forked from GameMaker2k/PyCatFile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompression.py
executable file
·469 lines (430 loc) · 15.1 KB
/
compression.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
This program is free software; you can redistribute it and/or modify
it under the terms of the Revised BSD License.
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
Revised BSD License for more details.
Copyright 2018-2024 Cool Dude 2k - http://idb.berlios.de/
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
$FileInfo: compression.py - Last Update: 1/31/2025 Ver. 0.18.0 RC 1 - Author: cooldude2k $
'''
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
import os
import binascii
import argparse
import shutil
from io import open as open
def CompressionSupport():
compression_list = []
try:
import gzip
compression_list.append("gz")
compression_list.append("gzip")
except ImportError:
'''return False;'''
try:
import bz2
compression_list.append("bz2")
compression_list.append("bzip2")
except ImportError:
'''return False;'''
try:
import lz4
compression_list.append("lz4")
except ImportError:
'''return False;'''
try:
import lzo
compression_list.append("lzo")
compression_list.append("lzop")
except ImportError:
'''return False;'''
try:
import zstandard
compression_list.append("zstd")
compression_list.append("zstandard")
except ImportError:
'''return False;'''
try:
import lzma
compression_list.append("lzma")
compression_list.append("xz")
except ImportError:
'''return False;'''
return compression_list
def CheckCompressionType(infile, closefp=True):
if(hasattr(infile, "read") or hasattr(infile, "write")):
ckcomfp = infile
else:
ckcomfp = open(infile, "rb")
ckcomfp.seek(0, 0)
prefp = ckcomfp.read(2)
filetype = False
if(prefp == binascii.unhexlify("1f8b")):
filetype = "gzip"
ckcomfp.seek(0, 0)
prefp = ckcomfp.read(3)
if(prefp == binascii.unhexlify("425a68")):
filetype = "bzip2"
ckcomfp.seek(0, 0)
prefp = ckcomfp.read(4)
if(prefp == binascii.unhexlify("28b52ffd")):
filetype = "zstd"
if(prefp == binascii.unhexlify("04224d18")):
filetype = "lz4"
ckcomfp.seek(0, 0)
prefp = ckcomfp.read(7)
if(prefp == binascii.unhexlify("fd377a585a0000")):
filetype = "lzma"
ckcomfp.seek(0, 0)
prefp = ckcomfp.read(9)
if(prefp == binascii.unhexlify("894c5a4f000d0a1a0a")):
filetype = "lzo"
ckcomfp.seek(0, 0)
if(closefp):
ckcomfp.close()
return filetype
def gzip_file(infile, outfile, level=9, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("gzip" not in support_list):
return False
import gzip
ucfilefp = open(infile, "rb")
cfilefp = gzip.open(outfile, "wb", level)
shutil.copyfileobj(ucfilefp, cfilefp)
cfilefp.close()
ucfilefp.close()
if(CheckCompressionType(outfile) != "gzip"):
os.remove(outfile)
return False
if(not keepfile):
os.remove(infile)
return True
def gunzip_file(infile, outfile, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("gzip" not in support_list):
return False
if(CheckCompressionType(infile) != "gzip"):
return False
import gzip
ucfilefp = open(outfile, "wb")
cfilefp = gzip.open(infile, "rb")
shutil.copyfileobj(cfilefp, ucfilefp)
cfilefp.close()
ucfilefp.close()
if(not keepfile):
os.remove(infile)
return True
def bzip2_file(infile, outfile, level=9, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("bzip2" not in support_list):
return False
import bz2
ucfilefp = open(infile, "rb")
cfilefp = bz2.BZ2File(outfile, "wb", compresslevel=level)
shutil.copyfileobj(ucfilefp, cfilefp)
cfilefp.close()
ucfilefp.close()
if(CheckCompressionType(outfile) != "bzip2"):
os.remove(outfile)
return False
if(not keepfile):
os.remove(infile)
return True
def bunzip2_file(infile, outfile, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("bzip2" not in support_list):
return False
if(CheckCompressionType(infile) != "bzip2"):
return False
import bz2
ucfilefp = open(outfile, "wb")
cfilefp = bz2.BZ2File(infile, "rb")
shutil.copyfileobj(cfilefp, ucfilefp)
cfilefp.close()
ucfilefp.close()
if(not keepfile):
os.remove(infile)
return True
def zstd_file(infile, outfile, level=9, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("zstd" not in support_list):
return False
import zstandard
ucfilefp = open(infile, "rb")
cfilefp = zstandard.open(
outfile, "wb", zstandard.ZstdCompressor(level=level))
shutil.copyfileobj(ucfilefp, cfilefp)
cfilefp.close()
ucfilefp.close()
if(CheckCompressionType(outfile) != "zstd"):
os.remove(outfile)
return False
if(not keepfile):
os.remove(infile)
return True
def unzstd_file(infile, outfile, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("zstd" not in support_list):
return False
if(CheckCompressionType(infile) != "zstd"):
return False
import zstandard
ucfilefp = open(outfile, "wb")
cfilefp = zstandard.open(infile, "rb")
shutil.copyfileobj(cfilefp, ucfilefp)
cfilefp.close()
ucfilefp.close()
if(not keepfile):
os.remove(infile)
return True
def lz4_file(infile, outfile, level=9, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("lz4" not in support_list):
return False
import lz4
ucfilefp = open(infile, "rb")
cfilefp = lz4.frame.open(outfile, "wb", compression_level=level)
shutil.copyfileobj(ucfilefp, cfilefp)
cfilefp.close()
ucfilefp.close()
if(CheckCompressionType(outfile) != "lz4"):
os.remove(outfile)
return False
if(not keepfile):
os.remove(infile)
return True
def unlz4_file(infile, outfile, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("lz4" not in support_list):
return False
if(CheckCompressionType(infile) != "lz4"):
return False
import lz4
ucfilefp = open(outfile, "wb")
cfilefp = lz4.frame.open(infile, "rb")
shutil.copyfileobj(cfilefp, ucfilefp)
cfilefp.close()
ucfilefp.close()
if(not keepfile):
os.remove(infile)
return True
def lzo_file(infile, outfile, level=9, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("lzo" not in support_list):
return False
import lzo
ucfilefp = open(infile, "rb")
cfilefp = open(outfile, "wb")
cfilefp.write(lzo.compress(ucfilefp.read(), level))
cfilefp.close()
ucfilefp.close()
if(CheckCompressionType(outfile) != "lzo"):
os.remove(outfile)
return False
if(not keepfile):
os.remove(infile)
return True
def unlzo_file(infile, outfile, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("lzo" not in support_list):
return False
if(CheckCompressionType(infile) != "lzo"):
return False
import lzo
ucfilefp = open(outfile, "wb")
cfilefp = open(infile, "rb")
ucfilefp.write(lzo.decompress(cfilefp.read()))
cfilefp.close()
ucfilefp.close()
if(not keepfile):
os.remove(infile)
return True
def lzma_file(infile, outfile, level=9, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("lzma" not in support_list):
return False
import lzma
ucfilefp = open(infile, "rb")
cfilefp = lzma.open(outfile, "wb", format=lzma.FORMAT_ALONE, preset=level)
shutil.copyfileobj(ucfilefp, cfilefp)
cfilefp.close()
ucfilefp.close()
if(CheckCompressionType(outfile) != "lzma"):
os.remove(outfile)
return False
if(not keepfile):
os.remove(infile)
return True
def unlzma_file(infile, outfile, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("lzma" not in support_list):
return False
if(CheckCompressionType(infile) != "lzma"):
return False
import lzma
ucfilefp = open(outfile, "wb")
cfilefp = lzma.open(infile, "rb", format=lzma.FORMAT_ALONE)
shutil.copyfileobj(cfilefp, ucfilefp)
cfilefp.close()
ucfilefp.close()
if(not keepfile):
os.remove(infile)
return True
def xz_file(infile, outfile, level=9, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("xz" not in support_list):
return False
import lzma
ucfilefp = open(infile, "rb")
cfilefp = lzma.open(outfile, "wb", format=lzma.FORMAT_XZ, preset=level)
shutil.copyfileobj(ucfilefp, cfilefp)
cfilefp.close()
ucfilefp.close()
if(CheckCompressionType(outfile) != "xz"):
os.remove(outfile)
return False
if(not keepfile):
os.remove(infile)
return True
def unxz_file(infile, outfile, keepfile=True):
support_list = CompressionSupport()
if(not os.path.exists(infile) or not os.path.isfile(infile)):
return False
if(os.path.exists(outfile)):
return False
if("xz" not in support_list):
return False
if(CheckCompressionType(infile) != "xz"):
return False
import lzma
ucfilefp = open(outfile, "wb")
cfilefp = lzma.open(infile, "rb", format=lzma.FORMAT_XZ)
shutil.copyfileobj(cfilefp, ucfilefp)
cfilefp.close()
ucfilefp.close()
if(not keepfile):
os.remove(infile)
return True
if __name__ == "__main__":
argparser = argparse.ArgumentParser(
description="Compress Files", conflict_handler="resolve", add_help=True)
argparser.add_argument(
"-V", "--version", action="version", version="PyCompress 0.0.1")
argparser.add_argument(
"-c", "--compress", action="store_true", help="Compress file")
argparser.add_argument("-d", "--decompress",
action="store_true", help="Decompress file")
argparser.add_argument("-i", "-f", "--input",
help="Files to compress/decompress", required=True)
argparser.add_argument(
"-o", "--output", help="Output file after compress/decompress", required=True)
argparser.add_argument(
"-k", "--keep", action="store_false", help="Keep input file")
argparser.add_argument("-l", "--level", default="1",
help="Compression level")
argparser.add_argument("-compression", "--compression", default="auto",
help="File compression to use for compress/decompress")
getargs = argparser.parse_args()
chkcompression = CompressionSupport()
if(getargs.compression not in chkcompression):
exit()
if(not getargs.compress and not getargs.decompress):
exit()
if(getargs.compress and getargs.decompress):
exit()
if(getargs.compress and not getargs.decompress):
if(getargs.compression == "gzip" and "gzip" in chkcompression):
gzip_file(getargs.input, getargs.output,
int(getargs.level), getargs.keep)
if(getargs.compression == "bzip2" and "bzip2" in chkcompression):
bzip2_file(getargs.input, getargs.output,
int(getargs.level), getargs.keep)
if(getargs.compression == "zstd" and "zstd" in chkcompression):
zstd_file(getargs.input, getargs.output,
int(getargs.level), getargs.keep)
if(getargs.compression == "lz4" and "lz4" in chkcompression):
lz4_file(getargs.input, getargs.output,
int(getargs.level), getargs.keep)
if(getargs.compression == "lzo" and "lzo" in chkcompression):
lzo_file(getargs.input, getargs.output,
int(getargs.level), getargs.keep)
if(getargs.compression == "lzma" and "lzma" in chkcompression):
lzma_file(getargs.input, getargs.output,
int(getargs.level), getargs.keep)
if(getargs.compression == "xz" and "xz" in chkcompression):
xz_file(getargs.input, getargs.output,
int(getargs.level), getargs.keep)
exit()
if(not getargs.compress and getargs.decompress):
if(getargs.compression == "gzip" and "gzip" in chkcompression):
gunzip_file(getargs.input, getargs.output, getargs.keep)
if(getargs.compression == "bzip2" and "bzip2" in chkcompression):
bunzip2_file(getargs.input, getargs.output, getargs.keep)
if(getargs.compression == "zstd" and "zstd" in chkcompression):
unzstd_file(getargs.input, getargs.output, getargs.keep)
if(getargs.compression == "lz4" and "lz4" in chkcompression):
unlz4_file(getargs.input, getargs.output, getargs.keep)
if(getargs.compression == "lzo" and "lzo" in chkcompression):
unlzo_file(getargs.input, getargs.output, getargs.keep)
if(getargs.compression == "lzma" and "lzma" in chkcompression):
unlzma_file(getargs.input, getargs.output, getargs.keep)
if(getargs.compression == "xz" and "xz" in chkcompression):
unxz_file(getargs.input, getargs.output, getargs.keep)
exit()