PyCatFile 0.10.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,199 @@
1
+ #!python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ '''
5
+ This program is free software; you can redistribute it and/or modify
6
+ it under the terms of the Revised BSD License.
7
+
8
+ This program is distributed in the hope that it will be useful,
9
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ Revised BSD License for more details.
12
+
13
+ Copyright 2018-2024 Cool Dude 2k - http://idb.berlios.de/
14
+ Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
15
+ Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
16
+
17
+ $FileInfo: catfile.py - Last Update: 5/8/2024 Ver. 0.10.4 RC 1 - Author: cooldude2k $
18
+ '''
19
+
20
+ from __future__ import absolute_import, division, print_function, unicode_literals;
21
+ import os, sys, argparse, pycatfile, binascii;
22
+
23
+ # Conditional import and signal handling for Unix-like systems
24
+ if os.name != 'nt': # Not Windows
25
+ import signal;
26
+ def handler(signum, frame):
27
+ pycatfile.VerbosePrintOut("Received SIGPIPE, exiting gracefully.","info");
28
+ sys.exit(0);
29
+ signal.signal(signal.SIGPIPE, handler);
30
+
31
+ rarfile_support = pycatfile.rarfile_support;
32
+ py7zr_support = pycatfile.py7zr_support;
33
+
34
+ if(sys.version[0]=="2"):
35
+ try:
36
+ from io import StringIO, BytesIO;
37
+ except ImportError:
38
+ try:
39
+ from cStringIO import StringIO;
40
+ from cStringIO import StringIO as BytesIO;
41
+ except ImportError:
42
+ from StringIO import StringIO;
43
+ from StringIO import StringIO as BytesIO;
44
+ elif(sys.version[0]>="3"):
45
+ from io import StringIO, BytesIO;
46
+ else:
47
+ teststringio = 0;
48
+ if(teststringio<=0):
49
+ try:
50
+ from cStringIO import StringIO as BytesIO;
51
+ teststringio = 1;
52
+ except ImportError:
53
+ teststringio = 0;
54
+ if(teststringio<=0):
55
+ try:
56
+ from StringIO import StringIO as BytesIO;
57
+ teststringio = 2;
58
+ except ImportError:
59
+ teststringio = 0;
60
+ if(teststringio<=0):
61
+ try:
62
+ from io import BytesIO;
63
+ teststringio = 3;
64
+ except ImportError:
65
+ teststringio = 0;
66
+
67
+ __project__ = pycatfile.__project__;
68
+ __program_name__ = pycatfile.__program_name__;
69
+ __file_format_name__ = pycatfile.__file_format_name__;
70
+ __file_format_lower__ = pycatfile.__file_format_lower__;
71
+ __file_format_magic__ = pycatfile.__file_format_magic__;
72
+ __file_format_len__ = pycatfile.__file_format_len__;
73
+ __file_format_hex__ = pycatfile.__file_format_hex__;
74
+ __file_format_delimiter__ = pycatfile.__file_format_delimiter__;
75
+ __file_format_list__ = pycatfile.__file_format_list__;
76
+ __use_new_style__ = pycatfile.__use_new_style__;
77
+ __use_advanced_list__ = pycatfile.__use_advanced_list__;
78
+ __use_alt_inode__ = pycatfile.__use_alt_inode__;
79
+ __project_url__ = pycatfile.__project_url__;
80
+ __version_info__ = pycatfile.__version_info__;
81
+ __version_date_info__ = pycatfile.__version_date_info__;
82
+ __version_date__ = pycatfile.__version_date__;
83
+ __version_date_plusrc__ = pycatfile.__version_date_plusrc__;
84
+ __version__ = pycatfile.__version__;
85
+
86
+ # Initialize the argument parser
87
+ argparser = argparse.ArgumentParser(description="Manipulate concatenated files.", conflict_handler="resolve", add_help=True);
88
+
89
+ # Version information
90
+ argparser.add_argument("-V", "--version", action="version", version=__program_name__ + " " + __version__);
91
+ # Input and output specifications
92
+ argparser.add_argument("-i", "--input", help="Specify the file(s) to concatenate or the concatenated file to extract.", required=True);
93
+ argparser.add_argument("-o", "--output", default=None, help="Specify the name for the extracted or output concatenated files.");
94
+ # Operations
95
+ argparser.add_argument("-c", "--create", action="store_true", help="Perform only the concatenation operation.");
96
+ argparser.add_argument("-e", "--extract", action="store_true", help="Perform only the extraction operation.");
97
+ argparser.add_argument("-t", "--convert", action="store_true", help="Convert a tar/zip/rar/7zip file to a concatenated file.");
98
+ argparser.add_argument("-r", "--repack", action="store_true", help="Re-concatenate files, fixing checksum errors if any.");
99
+ # File manipulation options
100
+ argparser.add_argument("-F", "--format", default=__file_format_list__[0], help="Specify the format to use.");
101
+ argparser.add_argument("-D", "--delimiter", default=__file_format_list__[5], help="Specify the delimiter to use.");
102
+ argparser.add_argument("-m", "--formatver", default=__file_format_list__[6], help="Specify the format version.");
103
+ argparser.add_argument("-l", "--list", action="store_true", help="List files included in the concatenated file.");
104
+ # Compression options
105
+ argparser.add_argument("-P", "--compression", default="auto", help="Specify the compression method to use for concatenation.");
106
+ argparser.add_argument("-L", "--level", default=None, help="Specify the compression level for concatenation.");
107
+ argparser.add_argument("-W", "--wholefile", action="store_true", help="Whole file compression method to use for concatenation.");
108
+ # Checksum and validation
109
+ argparser.add_argument("-v", "--validate", action="store_true", help="Validate concatenated file checksums.");
110
+ argparser.add_argument("-C", "--checksum", default="crc32", help="Specify the type of checksum to use. The default is crc32.");
111
+ argparser.add_argument("-s", "--skipchecksum", action="store_true", help="Skip the checksum check of files.");
112
+ # Permissions and metadata
113
+ argparser.add_argument("-p", "--preserve", action="store_false", help="Do not preserve permissions and timestamps of files.");
114
+ # Miscellaneous
115
+ argparser.add_argument("-d", "--verbose", action="store_true", help="Enable verbose mode to display various debugging information.");
116
+ argparser.add_argument("-T", "--text", action="store_true", help="Read file locations from a text file.");
117
+ # Parse the arguments
118
+ getargs = argparser.parse_args();
119
+
120
+ fname = getargs.format;
121
+ fnamelower = fname.lower();
122
+ fnamemagic = fname;
123
+ fnamelen = len(fname);
124
+ fnamehex = binascii.hexlify(fname.encode("UTF-8")).decode("UTF-8");
125
+ fnamesty = __use_new_style__;
126
+ fnamelst = __use_advanced_list__;
127
+ fnameino = __use_alt_inode__;
128
+ fnamelist = [fname, fnamemagic, fnamelower, fnamelen, fnamehex, getargs.delimiter, getargs.formatver, fnamesty, fnamelst, fnameino];
129
+
130
+ # Determine the primary action based on user input
131
+ actions = ['create', 'extract', 'list', 'repack', 'validate'];
132
+ active_action = next((action for action in actions if getattr(getargs, action)), None);
133
+
134
+ # Execute the appropriate functions based on determined actions and arguments
135
+ if active_action:
136
+ if active_action=='create':
137
+ if getargs.convert:
138
+ checkcompressfile = pycatfile.CheckCompressionSubType(getargs.input, fnamelist, True);
139
+ if(checkcompressfile=="catfile"):
140
+ tmpout = pycatfile.RePackArchiveFile(getargs.input, getargs.output, getargs.compression, getargs.wholefile, getargs.level, False, 0, 0, getargs.checksum, getargs.skipchecksum, [], fnamelist, getargs.verbose, False);
141
+ else:
142
+ tmpout = pycatfile.PackArchiveFileFromInFile(getargs.input, getargs.output, getargs.compression, getargs.wholefile, getargs.level, getargs.checksum, [], fnamelist, getargs.verbose, False);
143
+ if(not tmpout):
144
+ sys.exit(1);
145
+ else:
146
+ pycatfile.PackArchiveFile(getargs.input, getargs.output, getargs.text, getargs.compression, getargs.wholefile, getargs.level, False, getargs.checksum, [], fnamelist, getargs.verbose, False);
147
+ elif active_action=='repack':
148
+ if getargs.convert:
149
+ checkcompressfile = pycatfile.CheckCompressionSubType(getargs.input, fnamelist, True);
150
+ if(checkcompressfile=="catfile"):
151
+ pycatfile.RePackArchiveFile(getargs.input, getargs.output, getargs.compression, getargs.wholefile, getargs.level, False, 0, 0, getargs.checksum, getargs.skipchecksum, [], fnamelist, getargs.verbose, False);
152
+ else:
153
+ pycatfile.PackArchiveFileFromInFile(getargs.input, getargs.output, getargs.compression, getargs.wholefile, getargs.level, getargs.checksum, [], fnamelist, getargs.verbose, False);
154
+ if(not tmpout):
155
+ sys.exit(1);
156
+ else:
157
+ pycatfile.RePackArchiveFile(getargs.input, getargs.output, getargs.compression, getargs.wholefile, getargs.level, False, 0, 0, getargs.checksum, getargs.skipchecksum, [], fnamelist, getargs.verbose, False);
158
+ elif active_action=='extract':
159
+ if getargs.convert:
160
+ checkcompressfile = pycatfile.CheckCompressionSubType(getargs.input, fnamelist, True);
161
+ tempout = BytesIO();
162
+ if(checkcompressfile=="catfile"):
163
+ tmpout = pycatfile.RePackArchiveFile(getargs.input, tempout, getargs.compression, getargs.wholefile, getargs.level, False, 0, 0, getargs.checksum, getargs.skipchecksum, [], fnamelist, getargs.verbose, False);
164
+ else:
165
+ tmpout = pycatfile.PackArchiveFileFromInFile(getargs.input, tempout, getargs.compression, getargs.wholefile, getargs.level, getargs.checksum, [], fnamelist, getargs.verbose, False);
166
+ if(not tmpout):
167
+ sys.exit(1);
168
+ getargs.input = tempout;
169
+ pycatfile.UnPackArchiveFile(getargs.input, getargs.output, False, 0, 0, getargs.skipchecksum, fnamelist, getargs.verbose, getargs.preserve, getargs.preserve, False);
170
+ elif active_action=='list':
171
+ if getargs.convert:
172
+ checkcompressfile = pycatfile.CheckCompressionSubType(getargs.input, fnamelist, True);
173
+ if(checkcompressfile=="catfile"):
174
+ tmpout = pycatfile.ArchiveFileListFiles(getargs.input, 0, 0, getargs.skipchecksum, fnamelist, getargs.verbose, False);
175
+ else:
176
+ tmpout = pycatfile.InFileListFiles(getargs.input, getargs.verbose, fnamelist, False);
177
+ if(not tmpout):
178
+ sys.exit(1);
179
+ else:
180
+ pycatfile.ArchiveFileListFiles(getargs.input, 0, 0, getargs.skipchecksum, fnamelist, getargs.verbose, False);
181
+ elif active_action=='validate':
182
+ if getargs.convert:
183
+ checkcompressfile = pycatfile.CheckCompressionSubType(getargs.input, fnamelist, True);
184
+ tempout = BytesIO();
185
+ if(checkcompressfile=="catfile"):
186
+ tmpout = pycatfile.RePackArchiveFile(getargs.input, tempout, getargs.compression, getargs.wholefile, getargs.level, False, 0, 0, getargs.checksum, getargs.skipchecksum, [], fnamelist, getargs.verbose, False);
187
+ else:
188
+ tmpout = pycatfile.PackArchiveFileFromInFile(getargs.input, tempout, getargs.compression, getargs.wholefile, getargs.level, getargs.checksum, [], fnamelist, getargs.verbose, False);
189
+ getargs.input = tempout;
190
+ if(not tmpout):
191
+ sys.exit(1);
192
+ fvalid = pycatfile.ArchiveFileValidate(getargs.input, fnamelist, getargs.verbose, False);
193
+ if(not getargs.verbose):
194
+ import sys, logging;
195
+ logging.basicConfig(format="%(message)s", stream=sys.stdout, level=logging.DEBUG);
196
+ if(fvalid):
197
+ pycatfile.VerbosePrintOut("File is valid: \n" + str(getargs.input));
198
+ else:
199
+ pycatfile.VerbosePrintOut("File is invalid: \n" + str(getargs.input));
@@ -0,0 +1,90 @@
1
+ #!python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ '''
5
+ This program is free software; you can redistribute it and/or modify
6
+ it under the terms of the Revised BSD License.
7
+
8
+ This program is distributed in the hope that it will be useful,
9
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ Revised BSD License for more details.
12
+
13
+ Copyright 2018-2024 Cool Dude 2k - http://idb.berlios.de/
14
+ Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
15
+ Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
16
+
17
+ $FileInfo: neocatfile.py - Last Update: 5/8/2024 Ver. 0.10.4 RC 1 - Author: cooldude2k $
18
+ '''
19
+
20
+ from __future__ import absolute_import, division, print_function, unicode_literals
21
+ import argparse
22
+ import pycatfile
23
+
24
+ # Compatibility layer for Python 2 and 3 input
25
+ try:
26
+ input = raw_input
27
+ except NameError:
28
+ pass
29
+
30
+ # Determine if rar file support is enabled
31
+ rarfile_support = pycatfile.rarfile_support
32
+
33
+ # Set up the argument parser
34
+ argparser = argparse.ArgumentParser(description="Manipulates concatenated files for various operations like creation, extraction, and validation.")
35
+ argparser.add_argument("-V", "--version", action="version", version="{0} {1}".format(pycatfile.__program_name__, pycatfile.__version__), help="Displays the program's version.")
36
+ argparser.add_argument("-i", "--input", required=True, help="Specifies input file(s) for processing.")
37
+ argparser.add_argument("-o", "--output", help="Specifies the output file name.")
38
+ argparser.add_argument("-d", "--verbose", action="store_true", help="Enables verbose mode for detailed information.")
39
+ argparser.add_argument("-c", "--create", action="store_true", help="Creates a new concatenated file from input.")
40
+ argparser.add_argument("-e", "--extract", action="store_true", help="Extracts files from a concatenated archive.")
41
+ argparser.add_argument("-l", "--list", action="store_true", help="Lists contents of a specified concatenated file.")
42
+ argparser.add_argument("-r", "--repack", action="store_true", help="Repacks an existing concatenated file.")
43
+ argparser.add_argument("-v", "--validate", action="store_true", help="Validates a concatenated file's integrity.")
44
+ argparser.add_argument("--checksum", default="crc32", help="Specifies the checksum type (default: crc32).")
45
+ argparser.add_argument("--compression", default="auto", help="Specifies the compression method (default: auto).")
46
+ argparser.add_argument("--level", help="Specifies the compression level.")
47
+ argparser.add_argument("--preserve", action="store_true", help="Preserves file attributes when extracting.")
48
+ argparser.add_argument("--convert", choices=['tar', 'zip', 'rar'], help="Convert from an archive format (tar, zip, rar) to a concatenated file.")
49
+ args = argparser.parse_args()
50
+
51
+ # Determine the primary action based on user input
52
+ primary_action = None
53
+ if args.create:
54
+ primary_action = 'create'
55
+ elif args.repack:
56
+ primary_action = 'repack'
57
+ elif args.extract:
58
+ primary_action = 'extract'
59
+ elif args.list:
60
+ primary_action = 'list'
61
+ elif args.validate:
62
+ primary_action = 'validate'
63
+
64
+ # Functionality mappings
65
+ if primary_action == 'create':
66
+ if args.convert == 'tar':
67
+ pycatfile.PackArchiveFileFromTarFile(args.input, args.output, args.compression, args.level, args.checksum, [], pycatfile.__file_format_list__, args.verbose, False)
68
+ elif args.convert == 'zip':
69
+ pycatfile.PackArchiveFileFromZipFile(args.input, args.output, args.compression, args.level, args.checksum, [], pycatfile.__file_format_list__, args.verbose, False)
70
+ elif rarfile_support and args.convert == 'rar':
71
+ pycatfile.PackArchiveFileFromRarFile(args.input, args.output, args.compression, args.level, args.checksum, [], pycatfile.__file_format_list__, args.verbose, False)
72
+ else:
73
+ pycatfile.PackArchiveFile(args.input, args.output, args.verbose, args.compression, args.level, False, args.checksum, [], pycatfile.__file_format_list__, args.verbose, False)
74
+ elif primary_action == 'repack':
75
+ pycatfile.RePackArchiveFile(args.input, args.output, args.compression, args.level, args.checksum, args.verbose)
76
+ elif primary_action == 'extract':
77
+ pycatfile.UnPackArchiveFile(args.input, args.output, args.verbose, args.preserve)
78
+ elif primary_action == 'list':
79
+ if args.convert == 'tar':
80
+ pycatfile.TarFileListFiles(args.input, args.verbose, False)
81
+ elif args.convert == 'zip':
82
+ pycatfile.ZipFileListFiles(args.input, args.verbose, False)
83
+ elif rarfile_support and args.convert == 'rar':
84
+ pycatfile.RarFileListFiles(args.input, args.verbose, False)
85
+ else:
86
+ pycatfile.ArchiveFileListFiles(args.input, args.verbose)
87
+ elif primary_action == 'validate':
88
+ is_valid = pycatfile.ArchiveFileValidate(args.input, args.verbose)
89
+ result_msg = "Validation result for {0}: {1}".format(args.input, 'Valid' if is_valid else 'Invalid')
90
+ print(result_msg)
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2018, Game Maker 2k
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ * Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ * Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ * Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.1
2
+ Name: PyCatFile
3
+ Version: 0.10.4
4
+ Summary: A tar like file format name catfile after unix cat command (concatenate files) .
5
+ Home-page: https://github.com/GameMaker2k/PyCatFile
6
+ Download-URL: https://github.com/GameMaker2k/PyCatFile/archive/master.tar.gz
7
+ Author: Kazuki Przyborowski
8
+ Author-email: kazuki.przyborowski@gmail.com
9
+ Maintainer: Kazuki Przyborowski
10
+ Maintainer-email: kazuki.przyborowski@gmail.com
11
+ License: Revised BSD License
12
+ Keywords: catfile pycatfile python python-catfile
13
+ Platform: OS Independent
14
+ Classifier: Development Status :: 5 - Production/Stable
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Other Audience
17
+ Classifier: License :: OSI Approved
18
+ Classifier: License :: OSI Approved :: BSD License
19
+ Classifier: Natural Language :: English
20
+ Classifier: Operating System :: MacOS
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Operating System :: Microsoft
23
+ Classifier: Operating System :: Microsoft :: Windows
24
+ Classifier: Operating System :: OS/2
25
+ Classifier: Operating System :: OS Independent
26
+ Classifier: Operating System :: POSIX
27
+ Classifier: Operating System :: Unix
28
+ Classifier: Programming Language :: Python
29
+ Classifier: Topic :: Utilities
30
+ Classifier: Topic :: Software Development
31
+ Classifier: Topic :: Software Development :: Libraries
32
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
+ License-File: LICENSE
34
+
35
+ A tar like file format name catfile after unix cat command (concatenate files) .
@@ -0,0 +1,9 @@
1
+ pycatfile.py,sha256=wAMq-xSYSIjyd3sPqQKkGAiOrKOBHaOPx4ZOTWvg3sQ,313837
2
+ PyCatFile-0.10.4.data/scripts/catfile.py,sha256=s-36KCoLM9LiOx2XuKu9MQ3cH2vBHBahipf0q6KHzbA,10544
3
+ PyCatFile-0.10.4.data/scripts/neocatfile.py,sha256=7tCyPJE1YjNJFseMOcNYSXYmBC6_TchKV_ZTUYwHIkI,4956
4
+ PyCatFile-0.10.4.dist-info/LICENSE,sha256=WM1VWxTUVrQbvEa-LC7cKTaBHXiqSTyYPoJvsZSbd7E,1513
5
+ PyCatFile-0.10.4.dist-info/METADATA,sha256=NhT7dLaqd4gAWM3YAwwSC4-bgw1acmwAr4T17-ml7Qo,1493
6
+ PyCatFile-0.10.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
7
+ PyCatFile-0.10.4.dist-info/top_level.txt,sha256=ZnSwEHU_60RLIvmFhsATaAaEYjErDQgUymWwoXZ724c,10
8
+ PyCatFile-0.10.4.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
9
+ PyCatFile-0.10.4.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pycatfile
@@ -0,0 +1 @@
1
+