patool/patoolib/programs/arj.py

56 lines
1.7 KiB
Python
Raw Normal View History

2010-02-21 11:14:57 +00:00
# -*- 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 <http://www.gnu.org/licenses/>.
"""Archive commands for the arj program."""
def extract_arj (archive, compression, cmd, **kwargs):
2010-02-21 11:14:57 +00:00
"""Extract a ARJ archive."""
cmdlist = [cmd, 'x', '-r', '-y']
2010-02-21 12:40:42 +00:00
if not kwargs['verbose']:
cmdlist.append('-i-')
2010-02-21 11:14:57 +00:00
cmdlist.extend([archive, kwargs['outdir']])
return cmdlist
2010-02-21 14:48:52 +00:00
def list_arj (archive, compression, cmd, **kwargs):
2010-02-21 11:14:57 +00:00
"""List a ARJ archive."""
cmdlist = [cmd]
if kwargs['verbose']:
cmdlist.append('v')
else:
cmdlist.append('l')
2010-02-21 12:40:42 +00:00
cmdlist.append('-i-')
cmdlist.extend(['-r', '-y', archive])
2010-02-21 12:40:42 +00:00
return cmdlist
2010-02-21 14:48:52 +00:00
def test_arj (archive, compression, cmd, **kwargs):
2010-02-21 12:40:42 +00:00
"""Test a ARJ archive."""
cmdlist = [cmd, 't']
2010-02-21 12:40:42 +00:00
if not kwargs['verbose']:
cmdlist.append('-i-')
cmdlist.extend(['-r', '-y', archive])
2010-02-21 11:14:57 +00:00
return cmdlist
2010-02-21 14:48:52 +00:00
def create_arj (archive, compression, cmd, *args, **kwargs):
2010-02-21 14:48:52 +00:00
"""Create a ARJ archive."""
cmdlist = [cmd, 'a', '-r', '-y']
2010-02-21 14:48:52 +00:00
if not kwargs['verbose']:
cmdlist.append('-i-')
cmdlist.append(archive)
cmdlist.extend(args)
return cmdlist