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 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
|
# Copyright (C) 2010-2023 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/>.
"""Main package providing archive functions."""
import sys
# check for compatible Python version before importing other packages
if not hasattr(sys, "version_info") or sys.version_info < (3, 11, 0, "final", 0):
raise SystemExit("This program requires Python 3.11 or later.")
import functools
import inspect
import os
import shutil
import importlib
import subprocess
from collections.abc import Sequence, Callable
# PEP 396: supply __version__
from .configuration import App, Version as __version__ # noqa: F401
from . import fileutil, log, util
# export API functions
__all__ = [
'create_archive',
'diff_archives',
'extract_archive',
'is_archive',
'list_archive',
'list_formats',
'repack_archive',
'search_archive',
'supported_formats',
'test_archive',
]
# Supported archive commands
ArchiveCommands: tuple[str, ...] = ('list', 'extract', 'test', 'create')
# Supported archive formats
ArchiveFormats: tuple[str, ...] = (
'7z',
'ace',
'adf',
'alzip',
'ape',
'ar',
'arc',
'arj',
'bzip2',
'bzip3',
'cab',
'chm',
'compress',
'cpio',
'deb',
'dms',
'flac',
'freearc',
'gzip',
'iso',
'lrzip',
'lz4',
'lzh',
'lzip',
'lzma',
'lzop',
'rar',
'rpm',
'rzip',
'shar',
'shn',
'tar',
'udf',
'vhd',
'wim',
'xz',
'zip',
'zoo',
'zpaq',
'zstd',
)
# Supported compressions (used with tar for example)
# Note that all compressions must also be archive formats
ArchiveCompressions: tuple[str, ...] = (
'bzip2',
'compress',
'gzip',
'lzip',
'lzma',
'xz',
'zstd',
)
# Map MIME types to archive format
ArchiveMimetypes: dict[str, str] = {
'application/gzip': 'gzip',
'application/jar': 'zip', # reported on older systems such as ubuntu 14.04
'application/java-archive': 'zip',
'application/vnd.android.package-archive': 'zip',
'application/vnd.ms-cab-compressed': 'cab',
'application/x-7z-compressed': '7z',
'application/x-ace': 'ace',
'application/x-adf': 'adf',
'application/x-alzip': 'alzip',
'application/x-archive': 'ar',
'application/x-arc': 'arc',
'application/x-arj': 'arj',
'application/x-bzip2': 'bzip2',
'application/x-bzip3': 'bzip3',
'application/x-cab': 'cab',
'application/x-chm': 'chm',
'application/x-compress': 'compress',
'application/x-cpio': 'cpio',
'application/x-debian-package': 'deb',
'application/x-dms': 'dms',
'application/x-freearc': 'freearc',
'application/x-iso9660-image': 'iso',
'application/x-lz4': 'lz4',
'application/x-lzop': 'lzop',
'application/x-lzma': 'lzma',
'application/x-lzip': 'lzip',
'application/x-lha': 'lzh',
'application/x-lrzip': 'lrzip',
'application/x-lzh': 'lzh',
'application/x-ms-wim': 'wim',
'application/x-rpm': 'rpm',
'application/x-rzip': 'rzip',
'application/x-shar': 'shar',
'application/x-tar': 'tar',
'application/x-iso13346-image': 'udf',
'application/x-vhd': 'vhd',
'application/x-xz': 'xz',
'application/x-zip-compressed': 'zip',
'application/x-zoo': 'zoo',
'application/vnd.rar': 'rar',
'application/zip': 'zip',
'application/zpaq': 'zpaq',
"application/zstd": "zstd",
'audio/x-ape': 'ape',
'audio/x-shn': 'shn',
'audio/flac': 'flac',
}
# List of programs supporting the given archive format and command.
# If command is None, the program supports all commands (list, extract, ...)
# Programs starting with "py_" are Python modules.
# {<format>: {<command>: (<program>,...)}
ArchivePrograms: dict[str, dict[str | None, tuple[str, ...]]] = {
'7z': {
None: ('7z', '7za', '7zr', '7zz', '7zzs'),
'extract': ('unar',),
},
'ace': {
'extract': ('unace', 'unar'),
'test': ('unace',),
'list': ('unace',),
},
'adf': {
'extract': ('unadf',),
'test': ('unadf',),
'list': ('unadf',),
},
'alzip': {
'extract': ('unalz',),
'test': ('unalz',),
'list': ('unalz',),
},
'ape': {
'create': ('mac',),
'extract': ('mac',),
'list': ('py_echo',),
'test': ('mac',),
},
'ar': {
None: ('ar',),
},
# Note:
# ".arc" files can be in ARC or FREEARC format
# https://en.wikipedia.org/wiki/ARC_(file_format)
# https://en.wikipedia.org/wiki/FreeArc
'arc': {
None: ('arc',),
'extract': ('nomarch',),
'test': ('nomarch',),
'list': ('nomarch',),
},
'freearc': {
None: ('arc',),
},
'arj': {
None: ('arj',),
'extract': ('7z', '7zz', '7zzs'),
'list': ('7z', '7zz', '7zzs'),
'test': ('7z', '7zz', '7zzs'),
},
'bzip2': {
None: ('7z', '7za', '7zz', '7zzs'),
'extract': ('pbzip2', 'lbzip2', 'bzip2', 'unar', 'py_bz2'),
'test': ('pbzip2', 'lbzip2', 'bzip2'),
'create': ('pbzip2', 'lbzip2', 'bzip2', 'py_bz2'),
'list': ('py_echo',),
},
'bzip3': {
'extract': ('bzip3',),
'test': ('bzip3',),
'create': ('bzip3',),
'list': ('py_echo',),
},
'cab': {
'extract': ('cabextract', '7z', '7zz', '7zzs', 'unar'),
'create': ('lcab',),
'list': ('cabextract', '7z', '7zz', '7zzs'),
'test': ('cabextract', '7z', '7zz', '7zzs'),
},
'chm': {
'extract': ('7z', '7zz', '7zzs', 'archmage', 'extract_chmLib'),
'test': ('7z', '7zz', '7zzs', 'archmage'),
'list': ('7z', '7zz', '7zzs'),
},
'compress': {
'extract': ('gzip', '7z', '7za', '7zz', '7zzs', 'unar', 'uncompress.real'),
'list': (
'7z',
'7za',
'7zz',
'7zzs',
'py_echo',
),
'test': ('gzip', '7z', '7za', '7zz', '7zzs'),
'create': ('compress',),
},
'cpio': {
'extract': ('cpio', 'bsdcpio', '7z', '7zz', '7zzs', 'unar'),
'list': ('cpio', 'bsdcpio', '7z', '7zz', '7zzs'),
'test': ('cpio', 'bsdcpio', '7z', '7zz', '7zzs'),
'create': ('cpio', 'bsdcpio'),
},
'flac': {
'extract': ('flac',),
'test': ('flac',),
'create': ('flac',),
'list': ('py_echo',),
},
'gzip': {
None: ('7z', '7za', '7zz', '7zzs', 'pigz', 'gzip'),
'extract': (
'unar',
'py_gzip',
),
'create': ('zopfli', 'py_gzip'),
},
'iso': {
'extract': ('7z', '7zz', '7zzs', 'unar'),
'list': ('7z', '7zz', '7zzs', 'isoinfo'),
'test': (
'7z',
'7zz',
'7zzs',
),
'create': ('genisoimage',),
},
'lz4': {None: ('lz4',)},
'lzh': {
None: ('lha',),
'extract': ('lhasa', 'unar'),
},
'lzip': {
'extract': ('plzip', 'lzip', 'clzip', 'pdlzip'),
'list': ('py_echo',),
'test': ('plzip', 'lzip', 'clzip', 'pdlzip'),
'create': ('plzip', 'lzip', 'clzip', 'pdlzip'),
},
'lzma': {
'extract': ('7z', '7zz', '7zzs', 'lzma', 'xz', 'unar', 'py_lzma'),
'list': ('7z', '7zz', '7zzs', 'py_echo'),
'test': ('7z', '7zz', '7zzs', 'lzma', 'xz'),
'create': ('lzma', 'xz', 'py_lzma'),
},
'lrzip': {
'extract': ('lrzip',),
'list': ('py_echo',),
'test': ('lrzip',),
'create': ('lrzip',),
},
'rar': {
None: ('rar',),
'extract': ('unrar', '7z', '7zz', '7zzs', 'unar'),
'list': ('unrar', '7z', '7zz', '7zzs'),
'test': ('unrar', '7z', '7zz', '7zzs'),
},
'rpm': {
'extract': ('rpm2cpio', '7z', '7zz', '7zzs'),
'list': ('rpm', '7z', '7za', '7zz', '7zzs'),
'test': ('rpm', '7z', '7zz', '7zzs'),
},
'deb': {
'extract': ('dpkg-deb', '7z', '7zz', '7zzs'),
'list': ('dpkg-deb', '7z', '7zz', '7zzs'),
'test': ('dpkg-deb', '7z', '7zz', '7zzs'),
},
'dms': {
'extract': ('xdms', 'unar'),
'list': ('xdms',),
'test': ('xdms',),
},
'lzop': {
None: ('lzop',),
},
'rzip': {
'extract': ('rzip',),
'list': ('py_echo',),
'create': ('rzip',),
},
'shar': {
'create': ('shar',),
'extract': ('unshar',),
},
'shn': {
'extract': ('shorten',),
'list': ('py_echo',),
'create': ('shorten',),
},
'tar': {
None: ('tar', 'star', 'bsdtar', 'py_tarfile'),
'extract': ('unar',),
},
'udf': {
'extract': ('7z',),
'list': ('7z',),
'test': ('7z',),
},
'vhd': {
'extract': (
'7z',
'7zz',
'7zzs',
),
'list': (
'7z',
'7zz',
'7zzs',
),
'test': (
'7z',
'7zz',
'7zzs',
),
},
'wim': {
None: ('7z', '7zz', '7zzs'),
},
'xz': {
None: ('xz', '7z', '7zz', '7zzs'),
'extract': (
'unar',
'py_lzma',
),
'create': ('py_lzma',),
},
'zip': {
None: ('7z', '7za', '7zz', '7zzs', 'py_zipfile'),
'extract': ('unzip', 'unar', 'jar'),
'list': ('unzip', 'jar'),
'test': (
'zip',
'unzip',
),
'create': ('zip',),
},
'zoo': {
None: ('zoo',),
'extract': ('unar',),
},
'zpaq': {
None: ('zpaq',),
},
"zstd": {
None: ("zstd",),
"create": ("py_zstd",),
"extract": ("py_zstd",),
},
}
# List of programs by archive type, which don't support password use
NoPasswordSupportArchivePrograms: dict[str, dict[str | None, tuple[str, ...]]] = {
'bzip2': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'cab': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'arj': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'gzip': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'iso': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'cpio': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'rpm': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'deb': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'lzma': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'udf': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'vhd': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'xz': {
None: (
'7z',
'7zz',
'7zzs',
)
},
'zip': {
'create': ('py_zipfile',),
'extract': ('jar',),
'list': ('jar',),
},
}
# List those programs that have different python module names because of
# Python module naming restrictions.
ProgramModules: dict[str, str] = {
'7z': 'p7zip',
'7za': 'p7azip',
'7zr': 'p7rzip',
'7zz': 'p7zz',
'7zzs': 'p7zzs',
'uncompress.real': 'uncompress',
'dpkg-deb': 'dpkg',
'extract_chmlib': 'chmlib',
}
@functools.cache
def program_supports_compression(
command: str, program: str, exe: str, compression: str
) -> bool:
"""Decide if the given program supports the compression natively.
The result is memoized since this function can call the given program
for testing if it supports certain options.
@return: True iff the program supports the given compression format
natively, else False.
"""
if program in ('tar', 'star', 'bsdtar'):
# Unfortunately, different tar implementations support different compressions,
# even while having the same program name.
# So a better way to determine support is by running the tar program itself.
# Use the following features (which are hopefully true on all platforms):
# * tar programs support the "--help" option
# * tar programs exit with error on unsupported options
# * tar programs allow long option --<compression> for supported compressions
# This way running "tar --<compression> --help" determines, if the compression is supported
cmd = [exe, f"--{compression}", "--help"]
if util.run(cmd, stderr=subprocess.DEVNULL, verbosity=-1) != 0:
# compression is not supported by this tar implementation
return False
# in addition to the commandline option, tar also needs the corresponding compression program
if util.find_program(compression):
# the compression program is available for tar
if (
program == 'tar'
and command == 'create'
and compression == 'xz'
and os.name == 'nt'
):
# The native tar.exe on windows does not support creating tar.xz archives,
# even when xz.exe is available. Complicated ...
return False
return True
elif program in ('py_tarfile',):
# the python tarfile module has a fixed list of supported compression modules
return compression in ('gzip', 'bzip2', 'lzma', 'xz')
return False
from .mime import guess_mime, Encoding2Mime # noqa: E402
def is_archive(filename: str) -> bool:
"""Detect if the file is a known archive.
Example: patoolib.is_archive("package.deb")
:param filename: The filename to check. Can be relative to the current working directory or absolute.
:type filename: str
:return: True if given filename is an archive file.
:rtype: bool
"""
mime, _compression = guess_mime(filename)
return mime in ArchiveMimetypes
def get_archive_format(filename: str, verbosity: int = 0) -> tuple[str, str | None]:
"""Detect filename archive format and optional compression."""
mime, compression = guess_mime(filename)
if verbosity >= 2:
log.log_info(
f"archive {filename} has mime {mime} and compression {compression}"
)
if not (mime or compression):
raise util.PatoolError(f"unknown archive format for file `{filename}'")
if mime in ArchiveMimetypes:
format = ArchiveMimetypes[mime]
else:
raise util.PatoolError(
f"unknown archive mime format {mime} for file `{filename}'"
)
if verbosity >= 1:
log.log_info(f"detected format {format} for archive {filename}")
if format == compression:
# file cannot be in same format compressed
compression = None
return format, compression
def check_archive_format(format: str, compression: str | None) -> None:
"""Make sure format and compression is known."""
if format not in ArchiveFormats:
raise util.PatoolError(f"unknown archive format `{format}'")
if compression is not None and compression not in ArchiveCompressions:
raise util.PatoolError(f"unknown archive compression `{compression}'")
def find_archive_program(
format: str,
command: str,
program: str | None = None,
password: str | None = None,
compression: str | None = None,
verbosity: int = 0,
) -> str:
"""Find suitable archive program for given format and mode."""
commands = ArchivePrograms[format]
programs = []
if program is not None:
# try a specific program first
programs.append(program)
# first try the universal programs with key None
for key in (None, command):
if key in commands:
programs.extend(commands[key])
if password is not None:
programs = _remove_command_without_password_support(programs, format, command)
if not programs:
raise util.PatoolError(f"{command} archive format `{format}' is not supported")
# return the first existing program
for program in programs:
if program.startswith('py_'):
# it's a Python module, check if it is supported
try:
get_patool_program_module(program)
return program
except ImportError:
pass
continue
exe = util.find_program(program)
if exe:
if program in ('7z', '7zz', '7zzs', '7za'):
if format == 'rar' and not util.p7zip_supports_rar(program):
continue
if format == 'compress' and not util.p7zip_supports_compress(program):
continue
elif program == 'arc':
# arc program supports either ARC or FREEARC formats
# find out if it's the one we need
if util.get_arc_format(exe) != format:
continue
if not check_program_compression(
command, program, exe, compression, verbosity=verbosity
):
continue
return exe
if compression is not None and compression in Encoding2Mime:
# there is no program supporting the archive format with the given compression
# try to fall back to an archive program for only the compression encoding
if verbosity >= 0:
msg = f"could not find an executable program to {command} format {format} and compression {compression}, trying to run {command} only for {compression}"
log.log_info(msg)
return find_archive_program(
Encoding2Mime[compression],
command,
program=program,
verbosity=verbosity,
)
# no programs found
msg = f"could not find an executable program to {command} format {format}"
if compression is not None:
msg += f" and compression {compression}"
msg += "; candidates are " + ",".join(programs)
raise util.PatoolError(msg)
def check_program_compression(
command: str, program: str, exe: str, compression: str | None, verbosity: int = 0
) -> bool:
"""Check if a program supports the given compression.
@return:
+ True if compression is None or empty
+ True if given program supports the archive compression
+ False else
"""
if not compression:
return True
# check if compression is supported
if program_supports_compression(command, program, exe, compression):
return True
if command == 'create':
comp_command = command
else:
comp_command = 'extract'
comp_prog = find_archive_program(compression, comp_command, verbosity=verbosity)
if comp_prog:
return True
return False
def _remove_command_without_password_support(
programs: Sequence[str], format: str, command: str
) -> Sequence[str]:
"""Remove programs if they don't support work with password for current
format and command.
"""
if format not in NoPasswordSupportArchivePrograms:
return programs
no_password_support_commands = NoPasswordSupportArchivePrograms[format]
no_password_support_programs = set()
for key in (None, command):
if key in no_password_support_commands:
for program in no_password_support_commands[key]:
no_password_support_programs.add(program)
programs_with_support = []
for program in programs:
if program not in no_password_support_programs:
programs_with_support.append(program)
if not programs_with_support and programs:
raise util.PatoolError(
f"{command} archive format `{format}' with password is not supported"
)
return programs_with_support
def list_formats() -> None:
"""Print information about available archive formats to stdout.
:return: None
:rtype: None
"""
print("Archive programs of", App)
print("Archive programs are searched in the following directories:")
print(util.system_search_path())
print()
for format in ArchiveFormats:
print(format, "files:")
for command in ArchiveCommands:
programs = ArchivePrograms[format]
if command not in programs and None not in programs:
print(f" {command:>8}: - (not supported)")
continue
try:
program = find_archive_program(format, command)
print(f" {command:>8}: {program}", end=' ')
if format == 'tar':
encs = [x for x in ArchiveCompressions if util.find_program(x)]
if encs:
print(
"(supported compressions: {})".format(", ".join(encs)),
end=' ',
)
elif format == '7z':
if util.p7zip_supports_rar(program):
print("(rar archives supported)", end=' ')
else:
print("(rar archives not supported)", end=' ')
print()
except util.PatoolError:
# display information what programs can handle this archive format
handlers = programs.get(None, programs.get(command))
print(
f" {command:>8}: - (no program found; install {util.strlist_with_or(handlers)})" # ty: ignore[invalid-argument-type]
)
def supported_formats(operations: Sequence[str] = ArchiveCommands) -> list[str]:
"""Return a list of supported archive formats for an iterable of operations.
:param operations: The operations to check for, defaults to ArchiveCommands.
:type operations: List|Tuple|Set|Dict[str]
:return: A list of supported archive formats.
:rtype: List[str]
"""
supported = list(ArchiveFormats)
for format in ArchiveFormats:
# NOTE: If we wish to include supported formats in the CLI
# argparse default nargs to an empty list, so we would need some
# check to set operations to ArchiveCommands if bool(operations) is False.
for command in operations:
try:
find_archive_program(format, command)
except util.PatoolError:
supported.remove(format)
break
return supported
def move_outdir_orphan(outdir: str) -> tuple[bool, str]:
"""Move a single file or directory inside outdir a level up.
Never overwrite files.
Return (True, outfile) if successful, (False, reason) if not.
"""
entries = os.listdir(outdir)
if len(entries) == 1:
src = os.path.join(outdir, entries[0])
dst = os.path.join(os.path.dirname(outdir), entries[0])
if os.path.exists(dst) or os.path.islink(dst):
return (False, "local file exists")
shutil.move(src, dst)
os.rmdir(outdir)
return (True, entries[0])
return (False, "multiple files in root")
def run_archive_cmdlist(
archive_cmdlist: Sequence[str], verbosity: int = 0, interactive: bool = True
) -> int:
"""Run archive command.
@return: exit code
"""
# archive_cmdlist is a command list with optional keyword arguments
if isinstance(archive_cmdlist, tuple):
cmdlist, runkwargs = archive_cmdlist
else:
cmdlist, runkwargs = archive_cmdlist, {}
return util.run_checked(
cmdlist, verbosity=verbosity, interactive=interactive, **runkwargs
)
def cleanup_outdir(outdir: str, archive: str) -> tuple[str, str]:
"""Cleanup outdir after extraction and return target file name and
result string.
"""
fileutil.make_user_readable(outdir)
# move single directory or file in outdir
(success, msg) = move_outdir_orphan(outdir)
if success:
# msg is a single directory or filename
return msg, f"`{msg}'"
# outdir remains unchanged
# rename it to something more user-friendly (basically the archive
# name without extension)
outdir2 = fileutil.get_single_outfile("", archive)
os.rename(outdir, outdir2)
return outdir2, f"`{outdir2}' ({msg})"
def _extract_archive(
archive: str,
verbosity: int = 0,
interactive: bool = True,
outdir: str | None = None,
program: str | None = None,
format: str | None = None,
compression: str | None = None,
password: str | None = None,
) -> str:
"""Extract an archive.
@return: output directory
"""
if format is None:
format, compression = get_archive_format(archive, verbosity=verbosity)
check_archive_format(format, compression)
program = find_archive_program(
format,
'extract',
program=program,
password=password,
compression=compression,
verbosity=verbosity,
)
get_archive_cmdlist = get_archive_cmdlist_func(program, 'extract', format)
if outdir is None:
outdir = fileutil.tmpdir(dir=".")
do_cleanup_outdir = True
else:
do_cleanup_outdir = False
if os.path.exists(outdir):
if not os.path.isdir(outdir):
msg = f"output path `{outdir}' exists and is not a directory"
raise util.PatoolError(msg)
else:
if verbosity >= 0:
log.log_info(f"... creating output directory `{outdir}'.")
os.makedirs(outdir)
try:
cmdlist = get_archive_cmdlist(
archive,
compression,
program,
verbosity,
interactive,
outdir,
password=password,
)
if cmdlist:
# an empty command list means the get_archive_cmdlist() function
# already handled the command (e.g. when it's a builtin Python
# function)
run_archive_cmdlist(cmdlist, verbosity=verbosity, interactive=interactive)
if do_cleanup_outdir:
target, msg = cleanup_outdir(outdir, archive)
else:
target, msg = outdir, f"`{outdir}'"
if verbosity >= 0:
log.log_info(f"... {archive} extracted to {msg}.")
return target
finally:
# try to remove an empty temporary output directory
if do_cleanup_outdir and os.path.isdir(outdir):
try:
os.rmdir(outdir)
except OSError as err:
if sys.exc_info()[0] is not None:
msg = (
"extraction error, could not remove temporary "
f"extraction directory {outdir}: {err}"
)
log.log_error(msg)
def _create_archive(
archive: str,
filenames: Sequence[str],
verbosity: int = 0,
interactive: bool = True,
program: str | None = None,
format: str | None = None,
compression: str | None = None,
password: str | None = None,
) -> None:
"""Create an archive."""
if format is None:
format, compression = get_archive_format(archive, verbosity=verbosity)
check_archive_format(format, compression)
program = find_archive_program(
format,
'create',
program=program,
password=password,
compression=compression,
verbosity=verbosity,
)
get_archive_cmdlist = get_archive_cmdlist_func(program, 'create', format)
cmdlist = get_archive_cmdlist(
archive,
compression,
program,
verbosity,
interactive,
filenames,
password=password,
)
if cmdlist:
# an empty command list means the get_archive_cmdlist() function
# already handled the command (e.g. when it's a builtin Python
# function)
run_archive_cmdlist(cmdlist, verbosity=verbosity, interactive=interactive)
def _handle_archive(
archive: str,
command: str,
verbosity: int = 0,
interactive: bool = True,
program: str | None = None,
format: str | None = None,
compression: str | None = None,
password: str | None = None,
) -> None:
"""Test and list archives."""
if format is None:
format, compression = get_archive_format(archive, verbosity=verbosity)
check_archive_format(format, compression)
if command not in ('list', 'test'):
raise util.PatoolError(f"invalid archive command `{command}'")
program = find_archive_program(
format,
command,
program=program,
password=password,
compression=compression,
verbosity=verbosity,
)
get_archive_cmdlist = get_archive_cmdlist_func(program, command, format)
# prepare keyword arguments for command list
cmdlist = get_archive_cmdlist(
archive, compression, program, verbosity, interactive, password=password
)
if cmdlist:
# an empty command list means the get_archive_cmdlist() function
# already handled the command (e.g. when it's a builtin Python
# function)
run_archive_cmdlist(cmdlist, verbosity=verbosity, interactive=interactive)
def get_patool_program_module(program):
"""Get the patool module for given program."""
key = fileutil.stripext(os.path.basename(program).lower())
# modules are stored in "programs" submodule
modulename = ".programs." + ProgramModules.get(key, key)
# import the module
return importlib.import_module(modulename, __name__)
def get_archive_cmdlist_func(program: str, command: str, format: str) -> Callable:
"""Get the Python function that executes the given program."""
# get python module for given archive program
try:
module = get_patool_program_module(program)
except ImportError as err:
msg = f"cannot import program module {program} in {__name__}"
raise util.PatoolError(msg) from err
# get archive handler function (e.g. patoolib.programs.star.extract_tar)
try:
archive_cmdlist_func = getattr(module, f'{command}_{format}')
except AttributeError as err:
msg = f"could not find {command}_{format} in {module}"
raise util.PatoolError(msg) from err
def check_for_password_before_cmdlist_func_call(*args, **kwargs):
"""If password is None, or not set, run command as usual.
If password is set, but can't be accepted raise appropriate
message.
"""
if 'password' in kwargs and kwargs['password'] is None:
kwargs.pop('password')
if 'password' not in kwargs:
return archive_cmdlist_func(*args, **kwargs)
if 'password' in inspect.signature(archive_cmdlist_func).parameters:
return archive_cmdlist_func(*args, **kwargs)
msg = f'There is no support for password in {program}'
raise util.PatoolError(msg)
return check_for_password_before_cmdlist_func_call
def _diff_archives(
archive1: str, archive2: str, verbosity: int = 0, interactive: bool = True
) -> int:
"""Show differences between two archives.
@return 0 if archives are the same, else 1
@raises: PatoolError on errors
"""
if fileutil.is_same_file(archive1, archive2):
return 0
diff = util.find_program("diff")
if not diff:
msg = "The diff(1) program is required for showing archive differences, please install it."
raise util.PatoolError(msg)
tmpdir1 = fileutil.tmpdir()
try:
path1 = _extract_archive(archive1, outdir=tmpdir1, verbosity=-1)
entries1 = os.listdir(tmpdir1)
tmpdir2 = fileutil.tmpdir()
try:
path2 = _extract_archive(archive2, outdir=tmpdir2, verbosity=-1)
entries2 = os.listdir(tmpdir2)
if len(entries1) == 1 and len(entries2) == 1:
# when both archives only have one single entry, compare those
diffpath1 = os.path.join(path1, entries1[0])
diffpath2 = os.path.join(path2, entries2[0])
else:
diffpath1 = path1
diffpath2 = path2
return util.run_checked(
[diff, "-urN", diffpath1, diffpath2], verbosity=1, ret_ok=(0, 1)
)
finally:
fileutil.rmtree(tmpdir2)
finally:
fileutil.rmtree(tmpdir1)
def _search_archive(
pattern: str,
archive: str,
verbosity: int = 0,
interactive: bool = True,
password: str | None = None,
) -> int:
"""Search for given pattern in an archive."""
grep = util.find_program("grep")
if not grep:
msg = "The grep(1) program is required for searching archive contents, please install it."
raise util.PatoolError(msg)
tmpdir = fileutil.tmpdir()
try:
path = _extract_archive(archive, outdir=tmpdir, verbosity=-1, password=password)
return util.run_checked(
[grep, "-r", "-e", pattern, "."], ret_ok=(0, 1), verbosity=1, cwd=path
)
finally:
fileutil.rmtree(tmpdir)
def _repack_archive(
archive1: str,
archive2: str,
verbosity: int = 0,
interactive: bool = True,
password: str | None = None,
) -> None:
"""Repackage an archive to a different format."""
format1, compression1 = get_archive_format(archive1, verbosity=verbosity)
format2, compression2 = get_archive_format(archive2, verbosity=verbosity)
if format1 == format2 and compression1 == compression2:
# same format and compression allows to copy the file
if verbosity >= 0:
log.log_info(
f"copy `{archive1}' -> `{archive2}' in same format {format1} and compression {compression1}"
)
fileutil.link_or_copy(archive1, archive2, verbosity=verbosity)
return
tmpdir = fileutil.tmpdir()
try:
same_format = format1 == format2 and compression1 and compression2
if same_format:
# only decompress since the format is the same
format = compression1
else:
format = None
path = _extract_archive(
archive1,
verbosity=verbosity,
outdir=tmpdir,
password=password,
format=format,
)
archive = os.path.abspath(archive2)
files = tuple(os.listdir(path))
olddir = os.getcwd()
os.chdir(path)
try:
if same_format:
# only compress since the format is the same
format = compression2
else:
format = None
_create_archive(
archive,
files,
verbosity=verbosity,
interactive=interactive,
password=password,
format=format,
)
finally:
os.chdir(olddir)
finally:
fileutil.rmtree(tmpdir)
# the patool library API
def extract_archive(
archive: str,
verbosity: int = 0,
outdir: str | None = None,
program: str | None = None,
interactive: bool = True,
password: str | None = None,
) -> str:
"""Extract an archive file.
Extracting never overwrites existing files or directories. The original archive file is kept after
extraction, even if all files were successful extracted.
Example: patoolib.extract_archive("archive.zip", outdir="/tmp")
:param archive: The archive filename. Can be relative to the current working directory or absolute.
:type archive: str
:param verbosity: larger values print more information. 0 is the default, -1 or lower means no output,
values >= 1 prints command output
:type verbosity: int
:param outdir: The directory where the archive should be extracted. A value of None (the default)
uses the current working directory.
:type outdir: str or None
:param program: If None (the default), a list of suitable archive programs are checked if they
exist in the system search path (defined by the PATH environment variable).
If a program name is given, it is added to the list of programs that is searched for.
The program should be a relative or absolute path name to an executable.
:type program: str or None
:param interactive: If True (the default), wait for user input if the extraction program asks for it.
This should be set to True if you intend to type in a password interactively.
If set to False, standard input will be set to an empty string to prevent simple hangs from
programs requiring input.
:type interactive: bool
:param password: If an archive is encrypted, set the given password with command line options.
Note that the password might be written to logs that keep track of your command line
history. If an archive program does not support passwords this option is ignored by patool.
:type password: str or None
:raise patoolib.PatoolError: If an archive does not exist or is not a regular file, or on errors while
extracting.
:return: The directory where the archive has been extracted.
:rtype: str
"""
fileutil.check_existing_filename(archive)
if verbosity >= 0:
log.log_info(f"Extracting {archive} ...")
return _extract_archive(
archive,
verbosity=verbosity,
interactive=interactive,
outdir=outdir,
program=program,
password=password,
)
def list_archive(
archive: str,
verbosity: int = 1,
program: str | None = None,
interactive: bool = True,
password: str | None = None,
) -> None:
"""List given archive.
Example: patoolib.list_archive("package.deb")
:param archive: The archive filename. Can be relative to the current working directory or absolute.
:type archive: str
:param verbosity: larger values print more information. 0 is the default, -1 or lower means no output,
values >= 1 prints command output
:type verbosity: int
:param program: If None (the default), a list of suitable archive programs are checked if they
exist in the system search path (defined by the PATH environment variable).
If a program name is given, it is added to the list of programs that is searched for.
The program should be a relative or absolute path name to an executable.
:type program: str or None
:param interactive: If True (the default), wait for user input if the extraction program asks for it.
This should be set to True if you intend to type in a password interactively.
If set to False, standard input will be set to an empty string to prevent simple hangs from
programs requiring input.
:type interactive: bool
:param password: If an archive is encrypted, set the given password with command line options.
Note that the password might be written to logs that keep track of your command line
history. If an archive program does not support passwords this option is ignored by patool.
:type password: str or None
:raise patoolib.PatoolError: If an archive does not exist or is not a regular file, or on errors while
listing.
:return: None
:rtype: None
"""
# Set default verbosity to 1 since the listing output should be visible.
fileutil.check_existing_filename(archive)
if verbosity >= 0:
log.log_info(f"Listing {archive} ...")
return _handle_archive(
archive,
'list',
verbosity=verbosity,
interactive=interactive,
program=program,
password=password,
)
def test_archive(
archive: str,
verbosity: int = 0,
program: str | None = None,
interactive: bool = True,
password: str | None = None,
) -> None:
"""Test given archive.
Example: patoolib.test_archive("dist.tar.gz", verbosity=1)
:param archive: The archive filename. Can be relative to the current working directory or absolute.
:type archive: str
:param verbosity: larger values print more information. 0 is the default, -1 or lower means no output,
values >= 1 prints command output
:type verbosity: int
:param program: If None (the default), a list of suitable archive programs are checked if they
exist in the system search path (defined by the PATH environment variable).
If a program name is given, it is added to the list of programs that is searched for.
The program should be a relative or absolute path name to an executable.
:type program: str or None
:param interactive: If True (the default), wait for user input if the extraction program asks for it.
This should be set to True if you intend to type in a password interactively.
If set to False, standard input will be set to an empty string to prevent simple hangs from
programs requiring input.
:type interactive: bool
:param password: If an archive is encrypted, set the given password with command line options.
Note that the password might be written to logs that keep track of your command line
history. If an archive program does not support passwords this option is ignored by patool.
:type password: str or None
:raise patoolib.PatoolError: If an archive does not exist or is not a regular file, or on errors while
testing.
:return: None
:rtype: None
"""
fileutil.check_existing_filename(archive)
if verbosity >= 0:
log.log_info(f"Testing {archive} ...")
res = _handle_archive(
archive,
'test',
verbosity=verbosity,
interactive=interactive,
program=program,
password=password,
)
if verbosity >= 0:
log.log_info("... tested ok.")
return res
def create_archive(
archive: str,
filenames,
verbosity: int = 0,
program: str | None = None,
interactive: bool = True,
password: str | None = None,
) -> None:
"""Create given archive with given files.
Example: patoolib.create_archive("/path/to/myfiles.zip", ("file1.txt", "dir/"))
:param archive: The archive filename. Can be relative to the current working directory or absolute.
:type archive: str
:param filenames: A list of filenames to add to the archive. Can be relative to the current
working directory or absolute.
:type filenames: tuple of str
:param verbosity: larger values print more information. 0 is the default, -1 or lower means no output,
values >= 1 prints command output
:type verbosity: int
:param program: If None (the default), a list of suitable archive programs are checked if they
exist in the system search path (defined by the PATH environment variable).
If a program name is given, it is added to the list of programs that is searched for.
The program should be a relative or absolute path name to an executable.
:type program: str or None
:param interactive: If True (the default), wait for user input if the extraction program asks for it.
This should be set to True if you intend to type in a password interactively.
If set to False, standard input will be set to an empty string to prevent simple hangs from
programs requiring input.
:type interactive: bool
:param password: If an archive is encrypted, set the given password with command line options.
Note that the password might be written to logs that keep track of your command line
history. If an archive program does not support passwords this option is ignored by patool.
:type password: str or None
:raise patoolib.PatoolError: on errors while creating the archive
:return: None
:rtype: None
"""
fileutil.check_new_filename(archive)
fileutil.check_archive_filelist(filenames)
if verbosity >= 0:
log.log_info(f"Creating {archive} ...")
res = _create_archive(
archive,
filenames,
verbosity=verbosity,
interactive=interactive,
program=program,
password=password,
)
if verbosity >= 0:
log.log_info(f"... {archive} created.")
return res
def diff_archives(
archive1: str, archive2: str, verbosity: int = 0, interactive: bool = True
) -> int:
"""Compare two archives and print their differences.
Both archives will be extracted in temporary directories. Both directory contents will be compared
recursively with the diff(1) tool.
Example: patoolib.diff_archives("release1.0.tar.gz", "release2.0.zip")
:param archive1: The first archive filename. Can be relative to the current working directory or absolute.
:type archive1: str
:param archive2: The second archive filename. Can be relative to the current working directory or absolute.
:type archive2: str
:param verbosity: larger values print more information. 0 is the default, -1 or lower means no output,
values >= 1 prints command output
:type verbosity: int
:param interactive: If True (the default), wait for user input if the extraction program asks for it.
This should be set to True if you intend to type in a password interactively.
If set to False, standard input will be set to an empty string to prevent simple hangs from
programs requiring input.
:type interactive: bool
:raise patoolib.PatoolError: on errors while comparing the archives.
:return: None
:rtype: None
"""
fileutil.check_existing_filename(archive1)
fileutil.check_existing_filename(archive2)
if verbosity >= 0:
log.log_info(f"Comparing {archive1} with {archive2} ...")
res = _diff_archives(
archive1, archive2, verbosity=verbosity, interactive=interactive
)
if res == 0 and verbosity >= 0:
log.log_info("... no differences found.")
return res
def search_archive(
pattern: str,
archive: str,
verbosity: int = 0,
interactive: bool = True,
password: str | None = None,
) -> int:
"""Search pattern in archive members.
The archive will be extracted in a temporary directory. The directory contents will then be searched
with the grep(1) tool.
Example: patoolib.search_archive("def urlopen", "python3.3.tar.gz")
:param pattern: The pattern to search for. See the grep(1) manual page for pattern syntax.
:type pattern: str
:param archive: The archive filename. Can be relative to the current working directory or absolute.
:type archive: str
:param verbosity: larger values print more information. 0 is the default, -1 or lower means no output,
values >= 1 prints command output
:type verbosity: int
:param interactive: If True (the default), wait for user input if the extraction program asks for it.
This should be set to True if you intend to type in a password interactively.
If set to False, standard input will be set to an empty string to prevent simple hangs from
programs requiring input.
:type interactive: bool
:param password: If an archive is encrypted, set the given password with command line options.
Note that the password might be written to logs that keep track of your command line
history. If an archive program does not support passwords this option is ignored by patool.
:type password: str or None
:raise patoolib.PatoolError: on errors while extracting or searching the archive
:return: exit code of the grep program
:rtype: int
"""
if not pattern:
raise util.PatoolError("empty search pattern")
fileutil.check_existing_filename(archive)
if verbosity >= 0:
log.log_info(f"Searching {pattern!r} in {archive} ...")
res = _search_archive(
pattern,
archive,
verbosity=verbosity,
interactive=interactive,
password=password,
)
if res == 1 and verbosity >= 0:
log.log_info(f"... {pattern!r} not found")
return res
def repack_archive(
archive: str,
archive_new: str,
verbosity: int = 0,
interactive: bool = True,
password: str | None = None,
) -> None:
"""Repack archive to different file and/or format.
The archive will be extracted and recompressed to archive_new.
Example: patoolib.repack_archive("linux-2.6.33.tar.gz", "linux-2.6.33.tar.bz2")
:param archive: The archive filename. Can be relative to the current working directory or absolute.
:type archive: str
:param archive_new: The new archive filename. Can be relative to the current working directory or absolute.
:type archive_new: str
:param verbosity: larger values print more information. 0 is the default, -1 or lower means no output,
values >= 1 prints command output
:type verbosity: int
:param interactive: If True (the default), wait for user input if the extraction program asks for it.
This should be set to True if you intend to type in a password interactively.
If set to False, standard input will be set to an empty string to prevent simple hangs from
programs requiring input.
:type interactive: bool
:param password: If an archive is encrypted, set the given password with command line options.
Note that the password might be written to logs that keep track of your command line
history. If an archive program does not support passwords this option is ignored by patool.
:type password: str or None
:raise patoolib.PatoolError: on errors while extracting or creating the archive
:return: None
:rtype: None
"""
fileutil.check_existing_filename(archive)
fileutil.check_new_filename(archive_new)
if verbosity >= 0:
log.log_info(f"Repacking {archive} to {archive_new} ...")
res = _repack_archive(
archive,
archive_new,
verbosity=verbosity,
interactive=interactive,
password=password,
)
if verbosity >= 0:
log.log_info("... repacking successful.")
return res
|