# -*- coding: utf-8 -*- # Copyright (C) 2010 Bastian Kleineidam # # 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 3 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 . """Utility functions.""" import os import sys import subprocess import mimetypes import tempfile import traceback from distutils.spawn import find_executable mimedb = mimetypes.MimeTypes(strict=False) # add missing encodings and mimetypes mimedb.encodings_map['.bz2'] = 'bzip2' mimedb.encodings_map['.lzma'] = 'lzma' mimedb.encodings_map['.xz'] = 'xz' mimedb.suffix_map['.tbz2'] = '.tar.bz2' mimedb.add_type('application/x-lzop', '.lzo', strict=False) mimedb.add_type('application/x-arj', '.arj', strict=False) mimedb.add_type('application/x-lzma', '.lzma', strict=False) mimedb.add_type('application/x-xz', '.xz', strict=False) mimedb.add_type('application/java-archive', '.jar', strict=False) mimedb.add_type('application/x-rar', '.rar', strict=False) mimedb.add_type('application/x-7z-compressed', '.7z', strict=False) mimedb.add_type('application/x-cab', '.cab', strict=False) mimedb.add_type('application/x-rpm', '.rpm', strict=False) mimedb.add_type('application/x-debian-package', '.deb', strict=False) class PatoolError (StandardError): """Raised when errors occur.""" pass def backtick (cmd): """Return output from command.""" return subprocess.Popen(cmd, stdout=subprocess.PIPE).communicate()[0] def run (cmd, **kwargs): """Run command and raise subprocess.CalledProcessError on error.""" subprocess.check_call(cmd, **kwargs) def guess_mime (filename): """Guess the MIME type of given filename. Uses first mimetypes and then file(1) as fallback.""" mime, encoding = mimedb.guess_type(filename, strict=False) if mime is None and os.path.isfile(filename): file_prog = find_program("file") if file_prog: cmd = [file_prog, "--brief", "--mime-type", filename] try: mime = backtick(cmd).strip() except OSError, msg: # ignore errors, as file(1) is only a fallback pass return mime, encoding def check_filename (filename): """Ensure that given filename is a valid, existing file.""" if not os.path.isfile(filename): raise PatoolError("`%s' is not a file." % filename) if not os.path.exists(filename): raise PatoolError("File `%s' not found." % filename) if not os.access(filename, os.R_OK): raise PatoolError("File `%s' not readable." % filename) def tmpdir (dir=None): """Return a temporary directory for extraction.""" return tempfile.mkdtemp(suffix='', prefix='Unpack_', dir=dir) def shell_quote (value): """Quote all shell metacharacters in given string value.""" return '%s' % value def stripext (filename): """Return the basename without extension of given filename.""" return os.path.splitext(os.path.basename(filename))[0] def log_error (msg, out=sys.stderr): """Print error message to stderr (or any other given output).""" print >> out, "patool error:", msg def log_internal_error (out=sys.stderr): """Print internal error message to stderr.""" print >> out, "patool: internal error" etype, value = sys.exc_info()[:2] traceback.print_exc() print >> out, "System info:" print >> out, "Python %s on %s" % (sys.version, sys.platform) def p7zip_supports_rar (): """Determine if the RAR codec is installed for 7z program.""" return os.path.exists('/usr/lib/p7zip/Codecs/Rar29.so') def find_program (program): """Look for program in environment PATH variable.""" # XXX memoize result of this function path = os.environ['PATH'] return find_executable(program, path=path)