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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# (c) Copyright 2003-2006 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: Don Welch
#
__version__ = '4.0'
__title__ = 'Dependency/Version Check Utility'
__doc__ = "Check the existence and versions of HPLIP dependencies."
# Std Lib
import sys
import os
import getopt
import commands
import re
# Local
from base.g import *
from base import utils, dcheck, distros
USAGE = [(__doc__, "", "name", True),
("Usage: hp-check [OPTIONS]", "", "summary", True),
utils.USAGE_OPTIONS,
utils.USAGE_LOGGING1, utils.USAGE_LOGGING2, utils.USAGE_LOGGING3,
utils.USAGE_HELP,
]
def usage(typ='text'):
if typ == 'text':
utils.log_title(__title__, __version__)
utils.format_text(USAGE, typ, __title__, 'hp-check', __version__)
sys.exit(0)
build_str = "HPLIP will not build, install, and/or function properly without this dependency."
dependencies = {
'libjpeg': (True, "libjpeg - JPEG library", build_str, dcheck.check_libjpeg),
'cups' : (True, "cups - Common Unix Printing System", build_str, dcheck.check_cups),
'cups-devel': (True, 'cups-devel- Common Unix Printing System development files', build_str, dcheck.check_cups_devel),
'gcc' : (True, 'gcc - GNU Project C and C++ Compiler', build_str, dcheck.check_gcc),
'make' : (True, "make - GNU make utility to maintain groups of programs", build_str, dcheck.check_make),
'python-devel' : (True, "python-devel - Python development files", build_str, dcheck.check_python_devel),
'libpthread' : (True, "libpthread - POSIX threads library", build_str, dcheck.check_libpthread),
'python2x': (True, "Python 2.2 or greater - Python programming language", build_str, dcheck.check_python2x),
'gs': (True, "GhostScript - PostScript and PDF language interpreter and previewer", build_str, dcheck.check_gs),
'libusb': (True, "libusb - USB library", build_str, dcheck.check_libusb),
'lsb': (True, "LSB - Linux Standard Base support", build_str, dcheck.check_lsb),
'sane': (True, "SANE - Scanning library", "HPLIP scanning feature will not function.", dcheck.check_sane),
'xsane': (False, "xsane - Graphical scanner frontend for SANE", "This is an optional package.", dcheck.check_xsane),
'scanimage': (False, "scanimage - Shell scanning program", "This is an optional package.", dcheck.check_scanimage),
'reportlab': (False, "Reportlab - PDF library for Python", "HPLIP faxing will not have the coverpage feature.", dcheck.check_reportlab),
'python23': (True, "Python 2.3 or greater - Required for fax functionality", "HPLIP faxing feature will not function.", dcheck.check_python23),
'ppdev': (True, "ppdev - Parallel port support kernel module.", "Parallel port (LPT) connected printers will not work with HPLIP", dcheck.check_ppdev),
'pyqt': (True, "PyQt - Qt interface for Python", "HPLIP GUIs will not function.", dcheck.check_pyqt),
'libnetsnmp-devel': (True, "libnetsnmp-devel - SNMP networking library development files", "Networked connected printers will not work with HPLIP", dcheck.check_libnetsnmp),
'libcrypto': (True, "libcrypto - OpenSSL cryptographic library", "Networked connected printers will not work with HPLIP", dcheck.check_libcrypto),
}
def header(text):
c = len(text)
log.info("")
log.info("-"*(c+4))
log.info("| "+text+" |")
log.info("-"*(c+4))
log.info("")
num_errors = 0
try:
log.set_module("hp-check")
try:
opts, args = getopt.getopt(sys.argv[1:], 'hl:g',
['help', 'help-rest', 'help-man', 'help-desc', 'logging='])
except getopt.GetoptError:
usage()
sys.exit(1)
if os.getenv("HPLIP_DEBUG"):
log.set_level('debug')
log_level = 'info'
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 == '--help-desc':
print __doc__,
sys.exit(0)
elif o in ('-l', '--logging'):
log_level = a.lower().strip()
elif o == '-g':
log_level = 'debug'
if not log.set_level(log_level):
usage()
utils.log_title(__title__, __version__)
header("SYSTEM INFO")
log.info(utils.bold("Basic system info (uname -a):"))
status, output = utils.run('uname -a')
log.info("--> %s" % output.replace('\n', ''))
log.info(utils.bold("\nDetected distro (/etc/issue):"))
distro, distro_version = distros.getDistro()
distro_name = distros.distros_index[distro]
log.info("--> %s %s" % (distro_name, distro_version))
log.info(utils.bold("\nDetected distro (lsb_release):"))
lsb_release = utils.which("lsb_release")
if lsb_release:
cmd = os.path.join(lsb_release, "lsb_release")
status, vendor = utils.run(cmd + " -i")
vendor = vendor.split(':')[1].strip()
status, ver = utils.run(cmd + " -r")
ver = ver.split(':')[1].strip()
status, code = utils.run(cmd + " -c")
code = code.split(':')[1].strip()
log.info("--> %s %s (%s)" % (vendor, ver, code))
else:
log.error("lsb_release not found.")
log.info(utils.bold("\nCurrently installed version..."))
v = sys_cfg.hplip.version
home = sys_cfg.dirs.home
if v:
log.info("--> OK, HPLIP %s currently installed in '%s'." % (v, home))
log.info(utils.bold("\nCurrent contents of '/etc/hp/hplip.conf' file:"))
output = file('/etc/hp/hplip.conf', 'r').read()
log.info(output)
else:
log.info("--> OK, not found.")
log.info(utils.bold("\nHPLIP running?"))
hplip_present = dcheck.check_hplip_running()
if hplip_present:
log.info("--> Yes, HPLIP is running (OK).")
else:
log.info("--> No, HPLIP is not running (OK).")
log.info(utils.bold("\nHPOJ running?"))
hplip_present = dcheck.check_hpoj()
if hplip_present:
log.error("Yes, HPOJ is running. HPLIP is not compatible with HPOJ. To run HPLIP, please remove HPOJ.")
num_errors += 1
else:
log.info("--> No, HPOJ is not running (OK).")
log.info(utils.bold("\nChecking Python version..."))
ver = sys.version_info
log.debug("sys.version_info = %s" % repr(ver))
ver_maj = ver[0]
ver_min = ver[1]
ver_pat = ver[2]
if ver_maj == 2:
if ver_min >= 1:
log.info("--> OK, version %d.%d.%d installed" % ver[:3])
else:
log.error("Version %d.%d.%d installed. Please update to Python >= 2.1" % ver[:3])
sys.exit(1)
header("DEPENDENCIES")
dcheck.update_ld_output()
print
for d in dependencies:
log.debug("***")
log.info(utils.bold("Checking for dependency '%s (%s)'..." % (d, dependencies[d][1])))
if dependencies[d][3]():
log.info("--> OK, found.")
else:
num_errors += 1
log.error("Not found!")
if dependencies[d][0]:
log.error("This is a REQUIRED dependency.")
else:
log.info("This is an OPTIONAL dependency.")
print
header("INSTALLED PRINTERS")
from base import device
lpstat_pat = re.compile(r"""^device for (.*): (.*)""", re.IGNORECASE)
status, output = utils.run('lpstat -v')
print
cups_printers = []
for p in output.splitlines():
try:
match = lpstat_pat.search(p)
printer_name = match.group(1)
device_uri = match.group(2)
cups_printers.append((printer_name, device_uri))
except AttributeError:
pass
if cups_printers:
non_hp = False
for p in cups_printers:
try:
back_end, is_hp, bus, model, serial, dev_file, host, port = \
device.parseDeviceURI(p[1])
except Error:
is_hp = False
if is_hp:
x = 'Yes'
else:
x = 'No'
non_hp = True
log.info(utils.bold(p[0]))
log.info(utils.bold('-'*len(p[0])))
log.info("Device URI: %s" % p[1])
log.info("Installed in HPLIP? %s" % x)
ppd = os.path.join('/etc/cups/ppd', p[0] + '.ppd')
if os.path.exists(ppd):
log.info("PPD: %s" % ppd)
nickname_pat = re.compile(r'''\*NickName:\s*\"(.*)"''', re.MULTILINE)
f = file(ppd, 'r').read(4096)
try:
desc = nickname_pat.search(f).group(1)
except AttributeError:
desc = ''
log.info("PPD Description: %s" % desc)
status, output = utils.run('lpstat -p%s' % p[0])
log.info("\nPrinter status:")
log.info(output)
if back_end == 'hpfax' and desc != 'HP Fax':
num_errors += 1
log.error("Incorrect PPD file for fax queue '%s'. Fax queue must use 'HP-Fax-hplip.ppd'." % p[0])
print
if non_hp:
log.note("Any CUPS queues that are not 'HPLIP Installed', must be installed")
log.note("with the 'hp:' or 'hpfax:' backends to have them work in HPLIP. Refer")
log.note("to the install instructions on http://hplip.sourceforge.net for more help.")
else:
log.info("No queues found.")
header("SANE CONFIGURATION")
log.info(utils.bold("'hpaio' in /etc/sane.d/dll.conf'..."))
f = file('/etc/sane.d/dll.conf', 'r')
found = False
for line in f:
if 'hpaio' in line:
found = True
if found:
log.info("--> OK, found. SANE backend 'hpaio' is not properly set up.")
else:
num_errors += 1
log.error("Not found.")
log.info(utils.bold("\nChecking output of 'scanimage -L'..."))
if utils.which('scanimage'):
status, output = utils.run("scanimage -L")
log.info(output)
else:
log.error("scanimage not found.")
header("PYTHON EXTENSIONS")
log.info(utils.bold("Checking 'cupsext' CUPS extension..."))
try:
import cupsext
except ImportError:
num_errors += 1
log.error("Not found!")
else:
log.info("--> OK, found.")
log.info(utils.bold("\nChecking 'pcardext' Photocard extension..."))
try:
import pcardext
except ImportError:
num_errors += 1
log.error("Not found!")
else:
log.info("--> OK, found.")
print
if num_errors:
log.info("\n%d errors were detected.")
log.info("Please refer to the installation instructions at:")
log.info("http://hplip.sourceforge.net/install/index.html\n")
except KeyboardInterrupt:
print utils.red("Aborted")
|