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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
|
#!/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__ = '2.2'
__title__ = 'Photo Card Access Utility'
__doc__ = "Access inserted photo cards on supported HPLIP printers. This provides an alternative for older devices that do not support USB mass storage or for access to photo cards over a network."
# Std Lib
import sys
import os, os.path
import getopt
import re
import cmd
import readline
import time
import fnmatch
import string
# Local
from base.g import *
from base import device, service, utils #, exif
from prnt import cups
from pcard import photocard
log.set_module('hp-unload')
USAGE = [(__doc__, "", "name", True),
("Usage: hp-unload [PRINTER|DEVICE-URI] [MODE] [OPTIONS]", "", "summary", True),
utils.USAGE_ARGS,
utils.USAGE_DEVICE,
utils.USAGE_PRINTER,
utils.USAGE_SPACE,
("[MODE]", "", "header", False),
("Enter interactive mode (ftp-like interface):", "-i or --interactive", "option", False),
("Enter graphical UI mode:", "-u or --gui (Default)", "option", False),
("Run in non-interactive mode (batch mode):", "-n or --non-interactive", "option", False),
# TODO: File glob(s)
utils.USAGE_SPACE,
utils.USAGE_OPTIONS,
("Output directory:", "-o<dir> or --output=<dir> (Defaults to current directory)(Only used for non-GUI modes)", "option", False),
utils.USAGE_BUS1, utils.USAGE_BUS2,
utils.USAGE_LOGGING1, utils.USAGE_LOGGING2, utils.USAGE_LOGGING3,
utils.USAGE_HELP,
utils.USAGE_SPACE,
utils.USAGE_NOTES,
utils.USAGE_STD_NOTES1, utils.USAGE_STD_NOTES2,
("3. Use 'help' command at the pcard:> prompt for command help (Interactive mode (-i) only).", "", "note", True),
]
def usage(typ='text'):
if typ == 'text':
utils.log_title(__title__, __version__)
utils.format_text(USAGE, typ, __title__, 'hp-unload', __version__)
sys.exit(0)
## Console class (from ASPN Python Cookbook)
## Author: James Thiele
## Date: 27 April 2004
## Version: 1.0
## Location: http://www.eskimo.com/~jet/python/examples/cmd/
## Copyright (c) 2004, James Thiele
class Console(cmd.Cmd):
def __init__(self, pc):
cmd.Cmd.__init__(self)
self.intro = "Type 'help' for a list of commands. Type 'exit' to quit."
self.pc = pc
disk_info = self.pc.info()
pc.write_protect = disk_info[8]
if pc.write_protect:
log.warning("Photo card is write protected.")
self.prompt = utils.bold("pcard: %s > " % self.pc.pwd())
## Command definitions ##
def do_hist(self, args):
"""Print a list of commands that have been entered"""
print self._hist
def do_exit(self, args):
"""Exits from the console"""
return -1
def do_quit(self, args):
"""Exits from the console"""
return -1
## Command definitions to support Cmd object functionality ##
def do_EOF(self, args):
"""Exit on system end of file character"""
return self.do_exit(args)
def do_help(self, args):
"""Get help on commands
'help' or '?' with no arguments prints a list of commands for which help is available
'help <command>' or '? <command>' gives help on <command>
"""
## The only reason to define this method is for the help text in the doc string
cmd.Cmd.do_help(self, args)
## Override methods in Cmd object ##
def preloop(self):
"""Initialization before prompting user for commands.
Despite the claims in the Cmd documentaion, Cmd.preloop() is not a stub.
"""
cmd.Cmd.preloop(self) ## sets up command completion
self._hist = [] ## No history yet
self._locals = {} ## Initialize execution namespace for user
self._globals = {}
def postloop(self):
"""Take care of any unfinished business.
Despite the claims in the Cmd documentaion, Cmd.postloop() is not a stub.
"""
cmd.Cmd.postloop(self) ## Clean up command completion
print "Exiting..."
def precmd(self, line):
""" This method is called after the line has been input but before
it has been interpreted. If you want to modifdy the input line
before execution (for example, variable substitution) do it here.
"""
self._hist += [line.strip()]
return line
def postcmd(self, stop, line):
"""If you want to stop the console, return something that evaluates to true.
If you want to do some post command processing, do it here.
"""
return stop
def emptyline(self):
"""Do nothing on empty input line"""
pass
def default(self, line):
print utils.bold("ERROR: Unrecognized command. Use 'help' to list commands.")
def do_ldir(self, args):
""" List local directory contents."""
os.system('ls -l')
def do_lls(self, args):
""" List local directory contents."""
os.system('ls -l')
def do_dir(self, args):
"""Synonym for the ls command."""
return self.do_ls(args)
def do_ls(self, args):
"""List photo card directory contents."""
args = args.strip().lower()
files = self.pc.ls(True, args)
total_size = 0
formatter = utils.TextFormatter(
(
{'width': 14, 'margin' : 2},
{'width': 12, 'margin' : 2, 'alignment' : utils.TextFormatter.RIGHT},
{'width': 30, 'margin' : 2},
)
)
print
print utils.bold(formatter.compose(("Name", "Size", "Type")))
num_files = 0
for d in self.pc.current_directories():
if d[0] in ('.', '..'):
print formatter.compose((d[0], "", "directory"))
else:
print formatter.compose((d[0] + "/", "", "directory"))
for f in self.pc.current_files():
print formatter.compose((f[0], utils.format_bytes(f[2]), self.pc.classify_file(f[0])))
num_files += 1
total_size += f[2]
print utils.bold("% d files, %s" % (num_files, utils.format_bytes(total_size, True)))
def do_df(self, args):
"""Display free space on photo card.
Options:
-h\tDisplay in human readable format
"""
freespace = self.pc.df()
if args.strip().lower() == '-h':
fs = utils.format_bytes(freespace)
else:
fs = utils.commafy(freespace)
print "Freespace = %s Bytes" % fs
def do_cp(self, args, remove_after_copy=False):
"""Copy files from photo card to current local directory.
Usage:
\tcp FILENAME(S)|GLOB PATTERN(S)
Example:
\tCopy all JPEG and GIF files and a file named thumbs.db from photo card to local directory:
\tcp *.jpg *.gif thumbs.db
"""
args = args.strip().lower()
matched_files = self.pc.match_files(args)
if len(matched_files) == 0:
print "ERROR: File(s) not found."
else:
total, delta = self.pc.cp_multiple(matched_files, remove_after_copy, self.cp_status_callback, self.rm_status_callback)
print utils.bold("\n%s transfered in %d sec (%d KB/sec)" % (utils.format_bytes(total), delta, (total/1024)/(delta)))
def do_unload(self, args):
"""Unload all image files from photocard to current local directory.
Note:
\tSubdirectories on photo card are not preserved
Options:
-x\tDon't remove files after copy
-p\tPrint unload list but do not copy or remove files"""
args = args.lower().strip().split()
dont_remove = False
if '-x' in args:
if self.pc.write_protect:
log.error("Photo card is write protected. -x not allowed.")
return
else:
dont_remove = True
unload_list = self.pc.get_unload_list()
print
if len(unload_list) > 0:
if '-p' in args:
max_len = 0
for u in unload_list:
max_len = max(max_len, len(u[0]))
formatter = utils.TextFormatter(
(
{'width': max_len+2, 'margin' : 2},
{'width': 12, 'margin' : 2, 'alignment' : utils.TextFormatter.RIGHT},
{'width': 12, 'margin' : 2},
)
)
print
print utils.bold(formatter.compose(("Name", "Size", "Type")))
total = 0
for u in unload_list:
print formatter.compose(('%s' % u[0], utils.format_bytes(u[1]), '%s/%s' % (u[2], u[3])))
total += u[1]
print utils.bold("Found %d files to unload, %s" % (len(unload_list), utils.format_bytes(total, True)))
else:
print utils.bold("Unloading %d files..." % len(unload_list))
total, delta, was_cancelled = self.pc.unload(unload_list, self.cp_status_callback, self.rm_status_callback, dont_remove)
print utils.bold("\n%s unloaded in %d sec (%d KB/sec)" % (utils.format_bytes(total), delta, (total/1024)/delta))
else:
print "No image, audio, or video files found."
def cp_status_callback(self, src, trg, size):
if size == 1:
print
print utils.bold("Copying %s..." % src)
else:
print "\nCopied %s to %s (%s)..." % (src, trg, utils.format_bytes(size))
def rm_status_callback(self, src):
print "Removing %s..." % src
def do_rm(self, args):
"""Remove files from photo card."""
if self.pc.write_protect:
log.error("Photo card is write protected. rm not allowed.")
return
args = args.strip().lower()
matched_files = self.pc.match_files(args)
if len(matched_files) == 0:
print "ERROR: File(s) not found."
else:
for f in matched_files:
self.pc.rm(f, False)
self.pc.ls()
def do_mv(self, args):
"""Move files off photocard"""
if self.pc.write_protect:
log.error("Photo card is write protected. mv not allowed.")
return
self.do_cp(args, True)
def do_lpwd(self, args):
"""Print name of local current/working directory."""
print os.getcwd()
def do_lcd(self, args):
"""Change current local working directory."""
try:
os.chdir(args.strip())
except OSError:
print utils.bold("ERROR: Directory not found.")
print os.getcwd()
def do_pwd(self, args):
"""Print name of photo card current/working directory
Usage:
\t>pwd"""
print self.pc.pwd()
def do_cd(self, args):
"""Change current working directory on photo card.
Note:
\tYou may only specify one directory level at a time.
Usage:
\tcd <directory>
"""
args = args.lower().strip()
if args == '..':
if self.pc.pwd() != '/':
self.pc.cdup()
elif args == '.':
pass
elif args == '/':
self.pc.cd('/')
else:
matched_dirs = self.pc.match_dirs(args)
if len(matched_dirs) == 0:
print "Directory not found"
elif len(matched_dirs) > 1:
print "Pattern matches more than one directory"
else:
self.pc.cd(matched_dirs[0])
self.prompt = utils.bold("pcard: %s > " % self.pc.pwd())
def do_cdup(self, args):
"""Change to parent directory."""
self.do_cd('..')
#def complete_cd( self, text, line, begidx, endidx ):
# print text, line, begidx, endidx
# #return "XXX"
def do_cache(self, args):
"""Display current cache entries, or turn cache on/off.
Usage:
\tDisplay: cache
\tTurn on: cache on
\tTurn off: cache off
"""
args = args.strip().lower()
if args == 'on':
self.pc.cache_control(True)
elif args == 'off':
self.pc.cache_control(False)
else:
if self.pc.cache_state():
cache_info = self.pc.cache_info()
t = cache_info.keys()
t.sort()
print
for s in t:
print "sector %d (%d hits)" % (s, cache_info[s])
print utils.bold("Total cache usage: %s (%s maximum)" % (utils.format_bytes(len(t)*512), utils.format_bytes(photocard.MAX_CACHE * 512)))
print utils.bold("Total cache sectors: %s of %s" % (utils.commafy(len(t)), utils.commafy(photocard.MAX_CACHE)))
else:
print "Cache is off."
def do_sector(self, args):
"""Display sector data.
Usage:
\tsector <sector num>
"""
args = args.strip().lower()
cached = False
try:
sector = int(args)
except ValueError:
print "Sector must be specified as a number"
return
if self.pc.cache_check(sector) > 0:
print "Cached sector"
print repr(self.pc.sector(sector))
def do_tree(self, args):
"""Display photo card directory tree."""
tree = self.pc.tree()
print
self.print_tree(tree)
def print_tree(self, tree, level=0):
for d in tree:
if type(tree[d]) == type({}):
print ''.join([' '*level*4, d, '/'])
self.print_tree(tree[d], level+1)
def do_reset(self, args):
"""Reset the cache."""
self.pc.cache_reset()
def do_card(self, args):
"""Print info about photocard."""
print
print "Device URI = %s" % self.pc.device.device_uri
print "Model = %s" % self.pc.device.model_ui
print "Working dir = %s" % self.pc.pwd()
disk_info = self.pc.info()
print "OEM ID = %s" % disk_info[0]
print "Bytes/sector = %d" % disk_info[1]
print "Sectors/cluster = %d" % disk_info[2]
print "Reserved sectors = %d" % disk_info[3]
print "Root entries = %d" % disk_info[4]
print "Sectors/FAT = %d" % disk_info[5]
print "Volume label = %s" % disk_info[6]
print "System ID = %s" % disk_info[7]
print "Write protected = %d" % disk_info[8]
print "Cached sectors = %s" % utils.commafy(len(self.pc.cache_info()))
def do_display(self, args):
"""Display an image with ImageMagick.
Usage:
\tdisplay <filename>"""
args = args.strip().lower()
matched_files = self.pc.match_files(args)
if len(matched_files) == 1:
typ = self.pc.classify_file(args).split('/')[0]
if typ == 'image':
fd, temp_name = utils.make_temp_file()
self.pc.cp(args, temp_name)
os.system('display %s' % temp_name)
os.remove(temp_name)
else:
print "File is not an image."
elif len(matched_files) == 0:
print "File not found."
else:
print "Only one file at a time may be specified for display."
def do_show(self, args):
"""Synonym for the display command."""
self.do_display(args)
def do_thumbnail(self, args):
"""Display an embedded thumbnail image with ImageMagick.
Note:
\tOnly works with JPEG/JFIF images with embedded JPEG/TIFF thumbnails
Usage:
\tthumbnail <filename>"""
args = args.strip().lower()
matched_files = self.pc.match_files(args)
if len(matched_files) == 1:
typ, subtyp = self.pc.classify_file(args).split('/')
#print "'%s' '%s'" % (typ, subtyp)
if typ == 'image' and subtyp in ('jpeg', 'tiff'):
exif_info = self.pc.get_exif(args)
dir_name, file_name=os.path.split(args)
photo_name, photo_ext=os.path.splitext(args)
if 'JPEGThumbnail' in exif_info:
#print "JPEG thumbnail found."
temp_file_fd, temp_file_name = utils.make_temp_file()
#thumb_name = os.path.join( os.getcwd(), photo_name ) + '_thumb.jpg'
open(temp_file_name, 'wb').write(exif_info['JPEGThumbnail'])
os.system('display %s' % temp_file_name)
os.remove(temp_file_name)
elif 'TIFFThumbnail' in exif_info:
#print "TIFF thumbnail found."
#thumb_name = os.path.join( os.getcwd(), photo_name ) + '_thumb.tif'
temp_file_fd, temp_file_name = utils.make_temp_file()
open(temp_file_name, 'wb').write(exif_info['TIFFThumbnail'])
os.system('display %s' % temp_file_name)
os.remove(temp_file_name)
else:
print "No thumbnail found."
else:
print "Incorrect file type for thumbnail."
elif len(matched_files) == 0:
print "File not found."
else:
print "Only one file at a time may be specified for thumbnail display."
def do_thumb(self, args):
"""Synonym for the thumbnail command."""
self.do_thumbnail(args)
def do_exif(self, args):
"""Display EXIF info for file.
Usage:
\texif <filename>"""
args = args.strip().lower()
matched_files = self.pc.match_files(args)
if len(matched_files) == 1:
typ, subtyp = self.pc.classify_file(args).split('/')
#print "'%s' '%s'" % (typ, subtyp)
if typ == 'image' and subtyp in ('jpeg', 'tiff'):
exif_info = self.pc.get_exif(args)
formatter = utils.TextFormatter(
(
{'width': 40, 'margin' : 2},
{'width': 40, 'margin' : 2},
)
)
print
print utils.bold(formatter.compose(("Tag", "Value")))
ee = exif_info.keys()
ee.sort()
for e in ee:
if e not in ('JPEGThumbnail', 'TIFFThumbnail', 'Filename'):
#if e != 'EXIF MakerNote':
print formatter.compose((e, '%s' % exif_info[e]))
#else:
# print formatter.compose( ( e, ''.join( [ chr(x) for x in exif_info[e].values if chr(x) in string.printable ] ) ) )
else:
print "Incorrect file type for thumbnail."
elif len(matched_files) == 0:
print "File not found."
else:
print "Only one file at a time may be specified for thumbnail display."
def do_info(self, args):
"""Synonym for the exif command."""
self.do_exif(args)
def do_about(self, args):
utils.log_title(__title__, __version__)
def status_callback(src, trg, size):
if size == 1:
print
print utils.bold("Copying %s..." % src)
else:
print "\nCopied %s to %s (%s)..." % (src, trg, utils.format_bytes(size))
try:
opts, args = getopt.getopt(sys.argv[1:], 'p:d:hb:l:giuno:',
['printer=', 'device=', 'help', 'help-rest', 'help-man',
'bus=', 'logging=', 'interactive', 'gui', 'non-interactive',
'output=', 'help-desc'])
except getopt.GetoptError:
usage()
printer_name = None
device_uri = None
bus = device.DEFAULT_PROBE_BUS
log_level = logger.DEFAULT_LOG_LEVEL
mode = GUI_MODE
mode_specified = False
output_dir = os.getcwd()
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 == '--help-desc':
print __doc__,
sys.exit(0)
elif o in ('-p', '--printer'):
printer_name = a
elif o in ('-d', '--device'):
device_uri = a
elif o in ('-b', '--bus'):
bus = a.lower().strip()
if not device.validateBusList(bus):
usage()
elif o in ('-l', '--logging'):
log_level = a.lower().strip()
if not log.set_level(log_level):
usage()
elif o == '-g':
log.set_level('debug')
elif o in ('-i', '--interactive'):
if mode_specified:
log.error("You may only specify a single mode as a parameter (-i, -n or -u).")
sys.exit(1)
mode = INTERACTIVE_MODE
mode_specified = True
elif o in ('-u', '--gui'):
if mode_specified:
log.error("You may only specify a single mode as a parameter (-i, -n or -u).")
sys.exit(1)
mode = GUI_MODE
mode_specified = True
elif o in ('-n', '--non-interactive'):
if mode_specified:
log.error("You may only specify a single mode as a parameter (-i, -n or -u).")
sys.exit(1)
mode = NON_INTERACTIVE_MODE
mode_specified = True
elif o in ('-o', '--output'):
output_dir = a
utils.log_title(__title__, __version__)
# Security: Do *not* create files that other users can muck around with
os.umask (0077)
if mode == GUI_MODE:
if not os.getenv('DISPLAY'):
mode = INTERACTIVE_MODE
elif not utils.checkPyQtImport():
mode = INTERACTIVE_MODE
if mode in (INTERACTIVE_MODE, NON_INTERACTIVE_MODE):
if device_uri and printer_name:
log.error("You may not specify both a printer (-p) and a device (-d).")
usage()
if printer_name:
printer_list = cups.getPrinters()
found = False
for p in printer_list:
if p.name == printer_name:
found = True
if not found:
log.error("Unknown printer name: %s" % printer_name)
sys.exit(1)
if not device_uri and not printer_name:
try:
device_uri = device.getInteractiveDeviceURI(bus, 'pcard')
if device_uri is None:
sys.exit(1)
except Error:
log.error("Error occured during interactive mode. Exiting.")
sys.exit(1)
try:
pc = photocard.PhotoCard( None, device_uri, printer_name )
except Error, e:
log.error("Unable to start photocard session: %s" % e.msg)
sys.exit(1)
pc.set_callback(update_spinner)
if pc.device.device_uri is None and printer_name:
log.error("Printer '%s' not found." % printer_name)
sys.exit(1)
if pc.device.device_uri is None and device_uri:
log.error("Malformed/invalid device-uri: %s" % device_uri)
sys.exit(1)
pc.device.sendEvent(EVENT_START_PCARD_JOB)
try:
pc.mount()
except Error:
log.error("Unable to mount photo card on device. Check that device is powered on and photo card is correctly inserted.")
pc.umount()
pc.device.sendEvent(EVENT_PCARD_UNABLE_TO_MOUNT, typ='error')
sys.exit(1)
log.info(utils.bold("\nPhotocard on device %s mounted" % pc.device.device_uri))
log.info(utils.bold("DO NOT REMOVE PHOTO CARD UNTIL YOU EXIT THIS PROGRAM"))
output_dir = os.path.realpath(os.path.normpath(os.path.expanduser(output_dir)))
try:
os.chdir(output_dir)
except OSError:
print utils.bold("ERROR: Output directory %s not found." % output_dir)
sys.exit(1)
if mode == INTERACTIVE_MODE: # INTERACTIVE_MODE
console = Console(pc)
try:
try:
console . cmdloop()
except KeyboardInterrupt:
log.error("Aborted.")
except Exception, e:
log.error("An error occured: %s" % e)
finally:
pc.umount()
pc.device.sendEvent(EVENT_END_PCARD_JOB)
else: # NON_INTERACTIVE_MODE
print "Output directory is %s" % os.getcwd()
try:
try:
unload_list = pc.get_unload_list()
print
if len(unload_list) > 0:
max_len = 0
for u in unload_list:
max_len = max(max_len, len(u[0]))
formatter = utils.TextFormatter(
(
{'width': max_len+2, 'margin' : 2},
{'width': 12, 'margin' : 2, 'alignment' : utils.TextFormatter.RIGHT},
{'width': 12, 'margin' : 2},
)
)
print
print utils.bold(formatter.compose(("Name", "Size", "Type")))
total = 0
for u in unload_list:
print formatter.compose(('%s' % u[0], utils.format_bytes(u[1]), '%s/%s' % (u[2], u[3])))
total += u[1]
print utils.bold("Found %d files to unload, %s\n" % (len(unload_list), utils.format_bytes(total, True)))
print utils.bold("Unloading files...\n")
total, delta, was_cancelled = pc.unload(unload_list, status_callback, None, True)
print utils.bold("\n%s unloaded in %d sec (%d KB/sec)" % (utils.format_bytes(total), delta, (total/1024)/delta))
except KeyboardInterrupt:
log.error("Aborted.")
pass
finally:
pc.umount()
else: # GUI_MODE
from qt import *
from ui import unloadform
a = QApplication(sys.argv)
QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
try:
w = unloadform.UnloadForm(bus, device_uri, printer_name)
except Error:
log.error("Unable to connect to HPLIP I/O. Please (re)start HPLIP and try again.")
sys.exit(1)
a.setMainWidget(w)
w.show()
a.exec_loop()
log.info("Done.")
sys.exit(0)
|