2012-05-12 07:00:55 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-07-19 17:29:01 +00:00
|
|
|
# Copyright (C) 2012-2015 Bastian Kleineidam
|
2012-05-12 07:00:55 +00:00
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
"""Archive commands for the tarfile Python module."""
|
2013-02-26 19:41:42 +00:00
|
|
|
from .. import util, py_lzma
|
2012-05-12 07:00:55 +00:00
|
|
|
import tarfile
|
|
|
|
|
|
|
|
READ_SIZE_BYTES = 1024*1024
|
|
|
|
|
|
|
|
|
2015-12-06 19:09:16 +00:00
|
|
|
def list_tar (archive, compression, cmd, verbosity, interactive):
|
2012-05-12 07:00:55 +00:00
|
|
|
"""List a TAR archive with the tarfile Python module."""
|
|
|
|
try:
|
2013-02-25 20:04:02 +00:00
|
|
|
with tarfile.open(archive) as tfile:
|
2013-02-26 19:41:42 +00:00
|
|
|
tfile.list(verbose=verbosity>1)
|
2013-02-25 20:04:02 +00:00
|
|
|
except Exception as err:
|
|
|
|
msg = "error listing %s: %s" % (archive, err)
|
|
|
|
raise util.PatoolError(msg)
|
2012-05-12 07:00:55 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
test_tar = list_tar
|
|
|
|
|
2015-12-06 19:09:16 +00:00
|
|
|
def extract_tar (archive, compression, cmd, verbosity, interactive, outdir):
|
2012-05-12 07:00:55 +00:00
|
|
|
"""Extract a TAR archive with the tarfile Python module."""
|
|
|
|
try:
|
2013-02-25 20:04:02 +00:00
|
|
|
with tarfile.open(archive) as tfile:
|
|
|
|
tfile.extractall(path=outdir)
|
|
|
|
except Exception as err:
|
|
|
|
msg = "error extracting %s: %s" % (archive, err)
|
|
|
|
raise util.PatoolError(msg)
|
2012-05-12 07:00:55 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
2015-12-06 19:09:16 +00:00
|
|
|
def create_tar (archive, compression, cmd, verbosity, interactive, filenames):
|
2012-05-12 07:00:55 +00:00
|
|
|
"""Create a TAR archive with the tarfile Python module."""
|
2012-05-12 07:31:27 +00:00
|
|
|
mode = get_tar_mode(compression)
|
2012-05-12 07:00:55 +00:00
|
|
|
try:
|
2013-02-25 20:04:02 +00:00
|
|
|
with tarfile.open(archive, mode) as tfile:
|
2013-02-26 19:41:42 +00:00
|
|
|
for filename in filenames:
|
2013-02-25 20:04:02 +00:00
|
|
|
tfile.add(filename)
|
|
|
|
except Exception as err:
|
|
|
|
msg = "error creating %s: %s" % (archive, err)
|
|
|
|
raise util.PatoolError(msg)
|
2012-05-12 07:00:55 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def get_tar_mode (compression):
|
|
|
|
"""Determine tarfile open mode according to the given compression."""
|
|
|
|
if compression == 'gzip':
|
|
|
|
return 'w:gz'
|
|
|
|
if compression == 'bzip2':
|
|
|
|
return 'w:bz2'
|
2013-02-26 19:41:42 +00:00
|
|
|
if compression == 'lzma' and py_lzma:
|
|
|
|
return 'w:xz'
|
2012-05-12 07:00:55 +00:00
|
|
|
if compression:
|
|
|
|
msg = 'pytarfile does not support %s for tar compression'
|
2013-02-25 20:04:02 +00:00
|
|
|
raise util.PatoolError(msg % compression)
|
2012-05-12 07:00:55 +00:00
|
|
|
# no compression
|
|
|
|
return 'w'
|