File size: 18,159 Bytes
d3de7c1 | 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 | #!/usr/bin/env python
#
# Pure python p7zr implementation
# Copyright (C) 2019-2021 Hiroshi Miura
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import argparse
import getpass
import inspect
import io
import lzma
import os
import pathlib
import platform
import re
import shutil
import sys
from lzma import CHECK_CRC64, CHECK_SHA256, is_check_supported
from typing import Any
import _lzma # type: ignore
import multivolumefile
import texttable # type: ignore
import py7zr
from py7zr.callbacks import ExtractCallback
from py7zr.compressor import SupportedMethods
from py7zr.helpers import Local
from py7zr.properties import COMMAND_HELP_STRING
class CliExtractCallback(ExtractCallback):
def __init__(self, total_bytes, ofd=sys.stdout):
self.ofd = ofd
self.archive_total = total_bytes
self.total_bytes = 0
self.columns, _ = shutil.get_terminal_size(fallback=(80, 24))
self.pwidth = 0
def report_start_preparation(self):
pass
def report_start(self, processing_file_path, processing_bytes):
self.ofd.write(f"- {processing_file_path}")
self.pwidth += len(processing_file_path) + 2
def report_update(self, decompressed_bytes):
pass
def report_end(self, processing_file_path, wrote_bytes):
self.total_bytes += int(wrote_bytes)
plest = self.columns - self.pwidth
progress = self.total_bytes / self.archive_total
msg = f"({progress:.0%})\n"
if plest - len(msg) > 0:
self.ofd.write(msg.rjust(plest))
else:
self.ofd.write(msg)
self.pwidth = 0
def report_postprocess(self):
pass
def report_warning(self, message):
pass
class Cli:
dunits = {
"b": 1,
"B": 1,
"k": 1024,
"K": 1024,
"m": 1024 * 1024,
"M": 1024 * 1024,
"g": 1024 * 1024 * 1024,
"G": 1024 * 1024 * 1024,
}
def __init__(self):
self.parser = self._create_parser()
self.unit_pattern = re.compile(r"^([0-9]+)([bkmg]?)$", re.IGNORECASE)
def run(self, arg: Any | None = None) -> int:
args = self.parser.parse_args(arg)
if args.version:
return self.show_version()
return args.func(args)
def _create_parser(self):
parser = argparse.ArgumentParser(
prog="py7zr",
description="py7zr",
formatter_class=argparse.RawTextHelpFormatter,
add_help=True,
)
subparsers = parser.add_subparsers(title="subcommands", help=COMMAND_HELP_STRING)
list_parser = subparsers.add_parser("l")
list_parser.set_defaults(func=self.run_list)
list_parser.add_argument("arcfile", type=pathlib.Path, help="7z archive file")
list_parser.add_argument("--verbose", action="store_true", help="verbose output")
extract_parser = subparsers.add_parser("x")
extract_parser.set_defaults(func=self.run_extract)
extract_parser.add_argument("arcfile", type=pathlib.Path, help="7z archive file")
extract_parser.add_argument("odir", nargs="?", help="output directory")
extract_parser.add_argument("--files", nargs="+", help="List of archive members to extract")
extract_parser.add_argument(
"-P",
"--password",
action="store_true",
help="Password protected archive(you will be asked a password).",
)
extract_parser.add_argument("--verbose", action="store_true", help="verbose output")
create_parser = subparsers.add_parser("c")
create_parser.set_defaults(func=self.run_create)
create_parser.add_argument("arcfile", help="7z archive file")
create_parser.add_argument("filenames", nargs="+", help="filenames to archive")
create_parser.add_argument("-v", "--volume", nargs=1, help="Create volumes.")
create_parser.add_argument(
"-P",
"--password",
action="store_true",
help="Password protected archive(you will be asked a password).",
)
append_parser = subparsers.add_parser("a")
append_parser.set_defaults(func=self.run_append)
append_parser.add_argument("arcfile", help="7z archive file")
append_parser.add_argument("filenames", nargs="+", help="filenames to archive")
test_parser = subparsers.add_parser("t")
test_parser.set_defaults(func=self.run_test)
test_parser.add_argument("arcfile", help="7z archive file")
info_parser = subparsers.add_parser("i")
info_parser.set_defaults(func=self.run_info)
parser.add_argument("--version", action="store_true", help="Show version")
parser.set_defaults(func=self.show_help)
return parser
def show_version(self):
print(self._get_version())
@staticmethod
def _get_version():
s = inspect.stack()
_module = inspect.getmodule(s[0][0])
module_name = _module.__name__ if _module is not None else "unknown"
py_version = platform.python_version()
py_impl = platform.python_implementation()
py_build = platform.python_compiler()
return (
f"{module_name} Version {py7zr.__version__} : {py7zr.__copyright__} (Python {py_version} [{py_impl} {py_build}])"
)
def show_help(self, args):
self.show_version()
self.parser.print_help()
return 0
def run_info(self, args):
self.show_version()
print("\nFormats:")
table = texttable.Texttable()
table.set_deco(texttable.Texttable.HEADER)
table.set_cols_dtype(["t", "t"])
table.set_cols_align(["l", "r"])
for f in SupportedMethods.formats:
m = "".join(f" {x:02x}" for x in f["magic"])
table.add_row([str(f["name"]), m])
print(table.draw())
print("\nCodecs and hashes:")
table = texttable.Texttable()
table.set_deco(texttable.Texttable.HEADER)
table.set_cols_dtype(["t", "t"])
table.set_cols_align(["l", "r"])
for c in SupportedMethods.methods:
method_id: bytes = c["id"]
m = "".join(f"{x:02x}" for x in method_id)
method_name: str = c["name"]
table.add_row([m, method_name])
table.add_row(["0", "CRC32"])
if is_check_supported(CHECK_SHA256):
table.add_row(["0", "SHA256"])
if is_check_supported(CHECK_CRC64):
table.add_row(["0", "CRC64"])
print(table.draw())
def run_list(self, args):
"""Print a table of contents to file."""
target = args.arcfile
verbose = args.verbose
if re.fullmatch(r"[.]0+1?", target.suffix):
mv_target = pathlib.Path(target.parent, target.stem)
ext_start = int(target.suffix[-1])
with multivolumefile.MultiVolume(
mv_target, mode="rb", ext_digits=len(target.suffix) - 1, ext_start=ext_start
) as mvf:
setattr(mvf, "name", str(mv_target))
return self._run_list(mvf, verbose)
else:
return self._run_list(target, verbose)
def _run_list(self, target, verbose):
if not py7zr.is_7zfile(target):
print("not a 7z file")
return 1
with py7zr.SevenZipFile(target, "r") as a:
file = sys.stdout
archive_info = a.archiveinfo()
archive_list = a.list()
if verbose:
if isinstance(target, io.FileIO) or isinstance(target, multivolumefile.MultiVolume):
file_name: str = target.name # type: ignore
else:
file_name = str(target)
file.write(f"Listing archive: {file_name}\n")
file.write("--\n")
file.write(f"Path = {archive_info.filename}\n")
file.write("Type = 7z\n")
fstat = archive_info.stat
file.write(f"Physical Size = {fstat.st_size}\n")
file.write(f"Headers Size = {archive_info.header_size}\n")
file.write("Method = {}\n".format(", ".join(archive_info.method_names)))
if archive_info.solid:
file.write("Solid = {}\n".format("+"))
else:
file.write("Solid = {}\n".format("-"))
file.write(f"Blocks = {archive_info.blocks}\n")
file.write("\n")
file.write(
"total %d files and directories in %sarchive\n"
% (len(archive_list), (archive_info.solid and "solid ") or "")
)
file.write(" Date Time Attr Size Compressed Name\n")
file.write("------------------- ----- ------------ ------------ ------------------------\n")
for f in archive_list:
if f.creationtime is not None:
lastwritedate = f.creationtime.astimezone(Local).strftime("%Y-%m-%d")
lastwritetime = f.creationtime.astimezone(Local).strftime("%H:%M:%S")
else:
lastwritedate = " "
lastwritetime = " "
if f.is_directory:
attrib = "D..."
else:
attrib = "...."
if f.archivable:
attrib += "A"
else:
attrib += "."
if f.is_directory:
extra = " 0 "
elif f.compressed is None:
extra = " "
else:
extra = "%12d " % (f.compressed)
file.write(
"%s %s %s %12d %s %s\n"
% (
lastwritedate,
lastwritetime,
attrib,
f.uncompressed,
extra,
f.filename,
)
)
file.write("------------------- ----- ------------ ------------ ------------------------\n")
return 0
@staticmethod
def print_archiveinfo(archive, file):
file.write("--\n")
file.write(f"Path = {archive.filename}\n")
file.write("Type = 7z\n")
fstat = os.stat(archive.filename)
file.write(f"Physical Size = {fstat.st_size}\n")
file.write(f"Headers Size = {archive.header.size}\n")
file.write("Method = {}\n".format(", ".join(archive._get_method_names())))
if archive._is_solid():
file.write("Solid = {}\n".format("+"))
else:
file.write("Solid = {}\n".format("-"))
file.write(f"Blocks = {len(archive.header.main_streams.unpackinfo.folders)}\n")
def run_test(self, args):
target = args.arcfile
if not py7zr.is_7zfile(target):
print("not a 7z file")
return 1
with open(target, "rb") as f:
try:
a = py7zr.SevenZipFile(f)
file = sys.stdout
file.write(f"Testing archive: {a.filename}\n")
self.print_archiveinfo(archive=a, file=file)
file.write("\n")
if a.testzip() is None:
file.write("Everything is Ok\n")
return 0
else:
file.write("Bad 7zip file\n")
return 1
except py7zr.exceptions.Bad7zFile:
print("Header is corrupted. Cannot read as 7z file.")
return 1
except py7zr.exceptions.PasswordRequired:
print("The archive is encrypted but password is not given. FAILED.")
return 1
def run_extract(self, args: argparse.Namespace) -> int:
target = args.arcfile
verbose = args.verbose
if not py7zr.is_7zfile(target):
print("not a 7z file")
return 1
if not args.password:
password: str | None = None
else:
try:
password = getpass.getpass()
except getpass.GetPassWarning:
sys.stderr.write("Warning: your password may be shown.\n")
return 1
try:
a = py7zr.SevenZipFile(target, "r", password=password)
except py7zr.exceptions.Bad7zFile:
print("Header is corrupted. Cannot read as 7z file.")
return 1
except py7zr.exceptions.PasswordRequired:
print("The archive is encrypted, but password is not given. ABORT.")
return 1
except lzma.LZMAError:
if password is None:
print("The archive is corrupted. ABORT.")
else:
print("The archive is corrupted, or password is wrong. ABORT.")
return 1
except _lzma.LZMAError:
return 1
cb: ExtractCallback | None = None
if verbose:
archive_info = a.archiveinfo()
cb = CliExtractCallback(total_bytes=archive_info.uncompressed, ofd=sys.stderr)
try:
if args.files:
a.extract(
path=args.odir,
callback=cb,
targets=args.files,
# Allow to provide directories and extract all files in them.
recursive=True,
)
else:
a.extractall(path=args.odir, callback=cb)
except py7zr.exceptions.UnsupportedCompressionMethodError:
print("Unsupported compression method is used in archive. ABORT.")
return 1
except py7zr.exceptions.DecompressionError:
print("Error has been occurred during decompression. ABORT.")
return 1
except py7zr.exceptions.PasswordRequired:
print("The archive is encrypted, but password is not given. ABORT.")
return 1
except lzma.LZMAError:
if password is None:
print("The archive is corrupted. ABORT.")
else:
print("The archive is corrupted, or password is wrong. ABORT.")
return 1
except _lzma.LZMAError:
return 1
else:
return 0
def _check_volumesize_valid(self, size: str) -> bool:
if self.unit_pattern.match(size):
return True
else:
return False
def _volumesize_unitconv(self, size: str) -> int:
m = self.unit_pattern.match(size)
if m is not None:
num = m.group(1)
unit = m.group(2)
return int(num) if unit is None else int(num) * self.dunits[unit]
else:
return -1
def run_create(self, args):
sztarget: str = args.arcfile
filenames: list[str] = args.filenames
volume_size = args.volume[0] if getattr(args, "volume", None) is not None else None
if volume_size is not None and not self._check_volumesize_valid(volume_size):
sys.stderr.write("Error: Specified volume size is invalid.\n")
self.show_help(args)
exit(1)
if not sztarget.endswith(".7z"):
sztarget += ".7z"
target = pathlib.Path(sztarget)
if target.exists():
sys.stderr.write("Archive file exists!\n")
self.show_help(args)
exit(1)
if not args.password:
password: str | None = None
else:
try:
password = getpass.getpass()
except getpass.GetPassWarning:
sys.stderr.write("Warning: your password may be shown.\n")
return 1
if volume_size is None:
with py7zr.SevenZipFile(target, "w", password=password) as szf:
for path in filenames:
src = pathlib.Path(path)
if src.is_dir():
szf.writeall(src)
else:
szf.write(src)
return 0
else:
size = self._volumesize_unitconv(volume_size)
with multivolumefile.MultiVolume(target, mode="wb", volume=size, ext_digits=4) as mvf:
with py7zr.SevenZipFile(mvf, "w", password=password) as szf:
for path in filenames:
src = pathlib.Path(path)
if src.is_dir():
szf.writeall(src)
else:
szf.write(src)
return 0
def run_append(self, args):
sztarget: str = args.arcfile
filenames: list[str] = args.filenames
if not sztarget.endswith(".7z"):
sys.stderr.write("Error: specified archive file is invalid.")
self.show_help(args)
exit(1)
target = pathlib.Path(sztarget)
if not target.exists():
sys.stderr.write("Archive file does not exists!\n")
self.show_help(args)
exit(1)
with py7zr.SevenZipFile(target, "a") as szf:
for path in filenames:
src = pathlib.Path(path)
if src.is_dir():
szf.writeall(src)
else:
szf.write(src)
return 0
|