author | Ryan C. Gordon <icculus@icculus.org> |
Thu, 01 Aug 2002 20:23:29 +0000 | |
changeset 449 | eb054e541f67 |
parent 446 | e1f7fe003b70 |
child 464 | 21c8e0d1578c |
permissions | -rw-r--r-- |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* ZIP support routines for PhysicsFS. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
4 |
* Please see the file LICENSE in the source's root directory. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* |
337 | 6 |
* This file written by Ryan C. Gordon, with some peeking at "unzip.c" |
7 |
* by Gilles Vollant. |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
*/ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
9 |
|
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
10 |
#if HAVE_CONFIG_H |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
11 |
# include <config.h> |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
12 |
#endif |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
13 |
|
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
14 |
#if (defined PHYSFS_SUPPORTS_ZIP) |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
15 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
16 |
#include <stdio.h> |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
17 |
#include <stdlib.h> |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
18 |
#include <string.h> |
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
19 |
#include <assert.h> |
254
c66bbbe50f14
Implemeted getLastModTime method.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
20 |
#include <time.h> |
337 | 21 |
#include <errno.h> |
22 |
||
22
49f6101707b4
More tweaks; GRP completely implemented. Everything builds clean.
Ryan C. Gordon <icculus@icculus.org>
parents:
21
diff
changeset
|
23 |
#include "physfs.h" |
337 | 24 |
#include "zlib.h" |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
25 |
|
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
26 |
#define __PHYSICSFS_INTERNAL__ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
27 |
#include "physfs_internal.h" |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
28 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
29 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
30 |
* When sorting the zip entries in an archive, we use a modified QuickSort. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
31 |
* When there are less then ZIP_QUICKSORT_THRESHOLD entries left to sort, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
32 |
* we switch over to an InsertionSort for the remainder. Tweak to taste. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
33 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
34 |
#define ZIP_QUICKSORT_THRESHOLD 4 |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
35 |
|
337 | 36 |
/* |
37 |
* A buffer of ZIP_READBUFSIZE is malloc() for each compressed file opened, |
|
38 |
* and is free()'d when you close the file; compressed data is read into |
|
39 |
* this buffer, and then is decompressed into the buffer passed to |
|
40 |
* PHYSFS_read(). |
|
41 |
* |
|
42 |
* Uncompressed entries in a zipfile do not allocate this buffer; they just |
|
43 |
* read data directly into the buffer passed to PHYSFS_read(). |
|
44 |
* |
|
45 |
* Depending on your speed and memory requirements, you should tweak this |
|
46 |
* value. |
|
47 |
*/ |
|
48 |
#define ZIP_READBUFSIZE (16 * 1024) |
|
49 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
50 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
51 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
52 |
* Entries are "unresolved" until they are first opened. At that time, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
53 |
* local file headers parsed/validated, data offsets will be updated to look |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
54 |
* at the actual file data instead of the header, and symlinks will be |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
55 |
* followed and optimized. This means that we don't seek and read around the |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
56 |
* archive until forced to do so, and after the first time, we had to do |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
57 |
* less reading and parsing, which is very CD-ROM friendly. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
58 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
59 |
typedef enum |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
60 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
61 |
ZIP_UNRESOLVED_FILE, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
62 |
ZIP_UNRESOLVED_SYMLINK, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
63 |
ZIP_RESOLVING, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
64 |
ZIP_RESOLVED, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
65 |
ZIP_BROKEN_FILE, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
66 |
ZIP_BROKEN_SYMLINK, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
67 |
} ZipResolveType; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
68 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
69 |
|
337 | 70 |
/* |
71 |
* One ZIPentry is kept for each file in an open ZIP archive. |
|
72 |
*/ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
73 |
typedef struct _ZIPentry |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
74 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
75 |
char *name; /* Name of file in archive */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
76 |
struct _ZIPentry *symlink; /* NULL or file we symlink to */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
77 |
ZipResolveType resolved; /* Have we resolved file/symlink? */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
78 |
PHYSFS_uint32 offset; /* offset of data in archive */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
79 |
PHYSFS_uint16 version; /* version made by */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
80 |
PHYSFS_uint16 version_needed; /* version needed to extract */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
81 |
PHYSFS_uint16 compression_method; /* compression method */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
82 |
PHYSFS_uint32 crc; /* crc-32 */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
83 |
PHYSFS_uint32 compressed_size; /* compressed size */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
84 |
PHYSFS_uint32 uncompressed_size; /* uncompressed size */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
85 |
PHYSFS_sint64 last_mod_time; /* last file mod time */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
86 |
} ZIPentry; |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
87 |
|
337 | 88 |
/* |
89 |
* One ZIPinfo is kept for each open ZIP archive. |
|
90 |
*/ |
|
91 |
typedef struct |
|
92 |
{ |
|
93 |
char *archiveName; /* path to ZIP in platform-dependent notation. */ |
|
94 |
PHYSFS_uint16 entryCount; /* Number of files in ZIP. */ |
|
95 |
ZIPentry *entries; /* info on all files in ZIP. */ |
|
96 |
} ZIPinfo; |
|
97 |
||
98 |
/* |
|
99 |
* One ZIPfileinfo is kept for each open file in a ZIP archive. |
|
100 |
*/ |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
101 |
typedef struct |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
102 |
{ |
337 | 103 |
ZIPentry *entry; /* Info on file. */ |
104 |
void *handle; /* physical file handle. */ |
|
105 |
PHYSFS_uint32 compressed_position; /* offset in compressed data. */ |
|
106 |
PHYSFS_uint32 uncompressed_position; /* tell() position. */ |
|
107 |
PHYSFS_uint8 *buffer; /* decompression buffer. */ |
|
108 |
z_stream stream; /* zlib stream state. */ |
|
109 |
} ZIPfileinfo; |
|
110 |
||
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
111 |
|
337 | 112 |
/* Magic numbers... */ |
113 |
#define ZIP_LOCAL_FILE_SIG 0x04034b50 |
|
114 |
#define ZIP_CENTRAL_DIR_SIG 0x02014b50 |
|
115 |
#define ZIP_END_OF_CENTRAL_DIR_SIG 0x06054b50 |
|
116 |
||
117 |
/* compression methods... */ |
|
118 |
#define COMPMETH_NONE 0 |
|
119 |
/* ...and others... */ |
|
120 |
||
121 |
||
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
122 |
#define UNIX_FILETYPE_MASK 0170000 |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
123 |
#define UNIX_FILETYPE_SYMLINK 0120000 |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
124 |
|
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
125 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
126 |
static PHYSFS_sint64 ZIP_read(FileHandle *handle, void *buffer, |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
127 |
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount); |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
128 |
static int ZIP_eof(FileHandle *handle); |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
129 |
static PHYSFS_sint64 ZIP_tell(FileHandle *handle); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
130 |
static int ZIP_seek(FileHandle *handle, PHYSFS_uint64 offset); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
131 |
static PHYSFS_sint64 ZIP_fileLength(FileHandle *handle); |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
132 |
static int ZIP_fileClose(FileHandle *handle); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
133 |
static int ZIP_isArchive(const char *filename, int forWriting); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
134 |
static DirHandle *ZIP_openArchive(const char *name, int forWriting); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
135 |
static LinkedStringList *ZIP_enumerateFiles(DirHandle *h, |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
136 |
const char *dirname, |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
137 |
int omitSymLinks); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
138 |
static int ZIP_exists(DirHandle *h, const char *name); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
139 |
static int ZIP_isDirectory(DirHandle *h, const char *name); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
140 |
static int ZIP_isSymLink(DirHandle *h, const char *name); |
254
c66bbbe50f14
Implemeted getLastModTime method.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
141 |
static PHYSFS_sint64 ZIP_getLastModTime(DirHandle *h, const char *name); |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
142 |
static FileHandle *ZIP_openRead(DirHandle *h, const char *filename); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
143 |
static void ZIP_dirClose(DirHandle *h); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
144 |
static int zip_resolve(void *in, ZIPinfo *info, ZIPentry *entry); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
145 |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
146 |
|
399
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
147 |
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP = |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
148 |
{ |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
149 |
"ZIP", |
427
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
150 |
ZIP_ARCHIVE_DESCRIPTION, |
399
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
151 |
"Ryan C. Gordon <icculus@clutteredmind.org>", |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
152 |
"http://icculus.org/physfs/", |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
153 |
}; |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
154 |
|
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
155 |
static const FileFunctions __PHYSFS_FileFunctions_ZIP = |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
156 |
{ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
157 |
ZIP_read, /* read() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
158 |
NULL, /* write() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
159 |
ZIP_eof, /* eof() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
160 |
ZIP_tell, /* tell() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
161 |
ZIP_seek, /* seek() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
162 |
ZIP_fileLength, /* fileLength() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
163 |
ZIP_fileClose /* fileClose() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
164 |
}; |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
165 |
|
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
166 |
|
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
167 |
const DirFunctions __PHYSFS_DirFunctions_ZIP = |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
168 |
{ |
399
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
169 |
&__PHYSFS_ArchiveInfo_ZIP, |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
170 |
ZIP_isArchive, /* isArchive() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
171 |
ZIP_openArchive, /* openArchive() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
172 |
ZIP_enumerateFiles, /* enumerateFiles() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
173 |
ZIP_exists, /* exists() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
174 |
ZIP_isDirectory, /* isDirectory() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
175 |
ZIP_isSymLink, /* isSymLink() method */ |
254
c66bbbe50f14
Implemeted getLastModTime method.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
176 |
ZIP_getLastModTime, /* getLastModTime() method */ |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
177 |
ZIP_openRead, /* openRead() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
178 |
NULL, /* openWrite() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
179 |
NULL, /* openAppend() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
180 |
NULL, /* remove() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
181 |
NULL, /* mkdir() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
182 |
ZIP_dirClose /* dirClose() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
183 |
}; |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
184 |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
185 |
|
427
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
186 |
static const char *zlib_error_string(int rc) |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
187 |
{ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
188 |
switch (rc) |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
189 |
{ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
190 |
case Z_OK: return(NULL); /* not an error. */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
191 |
case Z_STREAM_END: return(NULL); /* not an error. */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
192 |
case Z_ERRNO: return(strerror(errno)); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
193 |
case Z_NEED_DICT: return(ERR_ZLIB_NEED_DICT); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
194 |
case Z_DATA_ERROR: return(ERR_ZLIB_DATA_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
195 |
case Z_MEM_ERROR: return(ERR_ZLIB_MEMORY_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
196 |
case Z_BUF_ERROR: return(ERR_ZLIB_BUFFER_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
197 |
case Z_VERSION_ERROR: return(ERR_ZLIB_VERSION_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
198 |
default: return(ERR_ZLIB_UNKNOWN_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
199 |
} /* switch */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
200 |
|
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
201 |
return(NULL); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
202 |
} /* zlib_error_string */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
203 |
|
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
204 |
|
337 | 205 |
/* |
206 |
* Wrap all zlib calls in this, so the physfs error state is set appropriately. |
|
207 |
*/ |
|
208 |
static int zlib_err(int rc) |
|
209 |
{ |
|
427
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
210 |
const char *str = zlib_error_string(rc); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
211 |
if (str != NULL) |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
212 |
__PHYSFS_setError(str); |
337 | 213 |
return(rc); |
214 |
} /* zlib_err */ |
|
215 |
||
216 |
||
217 |
/* |
|
218 |
* Read an unsigned 32-bit int and swap to native byte order. |
|
219 |
*/ |
|
220 |
static int readui32(void *in, PHYSFS_uint32 *val) |
|
221 |
{ |
|
222 |
PHYSFS_uint32 v; |
|
223 |
BAIL_IF_MACRO(__PHYSFS_platformRead(in, &v, sizeof (v), 1) != 1, NULL, 0); |
|
224 |
*val = PHYSFS_swapULE32(v); |
|
225 |
return(1); |
|
226 |
} /* readui32 */ |
|
227 |
||
228 |
||
229 |
/* |
|
230 |
* Read an unsigned 16-bit int and swap to native byte order. |
|
231 |
*/ |
|
232 |
static int readui16(void *in, PHYSFS_uint16 *val) |
|
233 |
{ |
|
234 |
PHYSFS_uint16 v; |
|
235 |
BAIL_IF_MACRO(__PHYSFS_platformRead(in, &v, sizeof (v), 1) != 1, NULL, 0); |
|
236 |
*val = PHYSFS_swapULE16(v); |
|
237 |
return(1); |
|
238 |
} /* readui16 */ |
|
239 |
||
240 |
||
241 |
static PHYSFS_sint64 ZIP_read(FileHandle *handle, void *buf, |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
242 |
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
243 |
{ |
337 | 244 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
245 |
ZIPentry *entry = finfo->entry; |
|
246 |
PHYSFS_sint64 retval = 0; |
|
247 |
PHYSFS_sint64 maxread = ((PHYSFS_sint64) objSize) * objCount; |
|
248 |
PHYSFS_sint64 avail = entry->uncompressed_size - |
|
249 |
finfo->uncompressed_position; |
|
250 |
||
251 |
BAIL_IF_MACRO(maxread == 0, NULL, 0); /* quick rejection. */ |
|
252 |
||
253 |
if (avail < maxread) |
|
254 |
{ |
|
255 |
maxread = avail - (avail % objSize); |
|
256 |
objCount = maxread / objSize; |
|
257 |
BAIL_IF_MACRO(objCount == 0, ERR_PAST_EOF, 0); /* quick rejection. */ |
|
258 |
__PHYSFS_setError(ERR_PAST_EOF); /* this is always true here. */ |
|
259 |
} /* if */ |
|
260 |
||
261 |
if (entry->compression_method == COMPMETH_NONE) |
|
262 |
{ |
|
263 |
retval = __PHYSFS_platformRead(finfo->handle, buf, objSize, objCount); |
|
264 |
} /* if */ |
|
265 |
||
266 |
else |
|
267 |
{ |
|
268 |
finfo->stream.next_out = buf; |
|
269 |
finfo->stream.avail_out = objSize * objCount; |
|
270 |
||
271 |
while (retval < maxread) |
|
272 |
{ |
|
273 |
PHYSFS_uint32 before = finfo->stream.total_out; |
|
274 |
int rc; |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
275 |
|
337 | 276 |
if (finfo->stream.avail_in == 0) |
277 |
{ |
|
278 |
PHYSFS_sint64 br; |
|
279 |
||
280 |
br = entry->compressed_size - finfo->compressed_position; |
|
281 |
if (br > 0) |
|
282 |
{ |
|
283 |
if (br > ZIP_READBUFSIZE) |
|
284 |
br = ZIP_READBUFSIZE; |
|
285 |
||
286 |
br = __PHYSFS_platformRead(finfo->handle, |
|
287 |
finfo->buffer, |
|
288 |
1, br); |
|
289 |
if (br <= 0) |
|
290 |
break; |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
291 |
|
337 | 292 |
finfo->compressed_position += br; |
293 |
finfo->stream.next_in = finfo->buffer; |
|
294 |
finfo->stream.avail_in = br; |
|
295 |
} /* if */ |
|
296 |
} /* if */ |
|
297 |
||
298 |
rc = zlib_err(inflate(&finfo->stream, Z_SYNC_FLUSH)); |
|
299 |
retval += (finfo->stream.total_out - before); |
|
300 |
||
301 |
if (rc != Z_OK) |
|
302 |
break; |
|
303 |
} /* while */ |
|
304 |
||
305 |
retval /= objSize; |
|
306 |
} /* else */ |
|
307 |
||
308 |
if (retval > 0) |
|
309 |
finfo->uncompressed_position += (retval * objSize); |
|
310 |
||
311 |
return(retval); |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
312 |
} /* ZIP_read */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
313 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
314 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
315 |
static int ZIP_eof(FileHandle *handle) |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
316 |
{ |
337 | 317 |
ZIPfileinfo *finfo = ((ZIPfileinfo *) (handle->opaque)); |
318 |
return(finfo->uncompressed_position >= finfo->entry->uncompressed_size); |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
319 |
} /* ZIP_eof */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
320 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
321 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
322 |
static PHYSFS_sint64 ZIP_tell(FileHandle *handle) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
323 |
{ |
337 | 324 |
return(((ZIPfileinfo *) (handle->opaque))->uncompressed_position); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
325 |
} /* ZIP_tell */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
326 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
327 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
328 |
static int ZIP_seek(FileHandle *handle, PHYSFS_uint64 offset) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
329 |
{ |
337 | 330 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
331 |
ZIPentry *entry = finfo->entry; |
|
332 |
void *in = finfo->handle; |
|
333 |
||
334 |
BAIL_IF_MACRO(offset > entry->uncompressed_size, ERR_PAST_EOF, 0); |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
335 |
|
337 | 336 |
if (entry->compression_method == COMPMETH_NONE) |
337 |
{ |
|
338 |
PHYSFS_sint64 newpos = offset + entry->offset; |
|
339 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, newpos), NULL, 0); |
|
340 |
finfo->uncompressed_position = newpos; |
|
341 |
} /* if */ |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
342 |
|
337 | 343 |
else |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
344 |
{ |
337 | 345 |
/* |
346 |
* If seeking backwards, we need to redecode the file |
|
347 |
* from the start and throw away the compressed bits until we hit |
|
348 |
* the offset we need. If seeking forward, we still need to |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
349 |
* decode, but we don't rewind first. |
337 | 350 |
*/ |
351 |
if (offset < finfo->uncompressed_position) |
|
352 |
{ |
|
353 |
/* we do a copy so state is sane if inflateInit2() fails. */ |
|
354 |
z_stream str; |
|
355 |
memset(&str, '\0', sizeof (z_stream)); |
|
356 |
if (zlib_err(inflateInit2(&str, -MAX_WBITS)) != Z_OK) |
|
357 |
return(0); |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
358 |
|
345
cbcb27547864
Seeking backwards in ZIP_seek() works now.
Ryan C. Gordon <icculus@icculus.org>
parents:
342
diff
changeset
|
359 |
if (!__PHYSFS_platformSeek(in, entry->offset)) |
cbcb27547864
Seeking backwards in ZIP_seek() works now.
Ryan C. Gordon <icculus@icculus.org>
parents:
342
diff
changeset
|
360 |
return(0); |
cbcb27547864
Seeking backwards in ZIP_seek() works now.
Ryan C. Gordon <icculus@icculus.org>
parents:
342
diff
changeset
|
361 |
|
337 | 362 |
inflateEnd(&finfo->stream); |
363 |
memcpy(&finfo->stream, &str, sizeof (z_stream)); |
|
364 |
finfo->uncompressed_position = finfo->compressed_position = 0; |
|
365 |
} /* if */ |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
366 |
|
337 | 367 |
while (finfo->uncompressed_position != offset) |
368 |
{ |
|
369 |
PHYSFS_uint8 buf[512]; |
|
370 |
PHYSFS_uint32 maxread = offset - finfo->uncompressed_position; |
|
371 |
if (maxread > sizeof (buf)) |
|
372 |
maxread = sizeof (buf); |
|
373 |
||
374 |
if (ZIP_read(handle, buf, maxread, 1) != 1) |
|
375 |
return(0); |
|
376 |
} /* while */ |
|
377 |
} /* else */ |
|
378 |
||
379 |
return(1); |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
380 |
} /* ZIP_seek */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
381 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
382 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
383 |
static PHYSFS_sint64 ZIP_fileLength(FileHandle *handle) |
28
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
384 |
{ |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
385 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
337 | 386 |
return(finfo->entry->uncompressed_size); |
28
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
387 |
} /* ZIP_fileLength */ |
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
388 |
|
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
389 |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
390 |
static int ZIP_fileClose(FileHandle *handle) |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
391 |
{ |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
392 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
393 |
BAIL_IF_MACRO(!__PHYSFS_platformClose(finfo->handle), NULL, 0); |
337 | 394 |
|
395 |
if (finfo->entry->compression_method != COMPMETH_NONE) |
|
396 |
inflateEnd(&finfo->stream); |
|
397 |
||
398 |
if (finfo->buffer != NULL) |
|
399 |
free(finfo->buffer); |
|
400 |
||
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
401 |
free(finfo); |
429
72ca216c756a
Patched memory leaks (thanks, Valgrind!)
Ryan C. Gordon <icculus@icculus.org>
parents:
427
diff
changeset
|
402 |
free(handle); |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
403 |
return(1); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
404 |
} /* ZIP_fileClose */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
405 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
406 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
407 |
static PHYSFS_sint64 zip_find_end_of_central_dir(void *in, PHYSFS_sint64 *len) |
337 | 408 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
409 |
PHYSFS_uint8 buf[256]; |
413
d669d303317d
Initialized some variables to stop compiler whining.
Ryan C. Gordon <icculus@icculus.org>
parents:
402
diff
changeset
|
410 |
PHYSFS_sint32 i = 0; |
337 | 411 |
PHYSFS_sint64 filelen; |
412 |
PHYSFS_sint64 filepos; |
|
413 |
PHYSFS_sint32 maxread; |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
414 |
PHYSFS_sint32 totalread = 0; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
415 |
int found = 0; |
413
d669d303317d
Initialized some variables to stop compiler whining.
Ryan C. Gordon <icculus@icculus.org>
parents:
402
diff
changeset
|
416 |
PHYSFS_uint32 extra = 0; |
337 | 417 |
|
418 |
filelen = __PHYSFS_platformFileLength(in); |
|
419 |
BAIL_IF_MACRO(filelen == -1, NULL, 0); |
|
420 |
||
421 |
/* |
|
422 |
* Jump to the end of the file and start reading backwards. |
|
423 |
* The last thing in the file is the zipfile comment, which is variable |
|
424 |
* length, and the field that specifies its size is before it in the |
|
425 |
* file (argh!)...this means that we need to scan backwards until we |
|
426 |
* hit the end-of-central-dir signature. We can then sanity check that |
|
427 |
* the comment was as big as it should be to make sure we're in the |
|
428 |
* right place. The comment length field is 16 bits, so we can stop |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
429 |
* searching for that signature after a little more than 64k at most, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
430 |
* and call it a corrupted zipfile. |
337 | 431 |
*/ |
432 |
||
433 |
if (sizeof (buf) < filelen) |
|
434 |
{ |
|
435 |
filepos = filelen - sizeof (buf); |
|
436 |
maxread = sizeof (buf); |
|
437 |
} /* if */ |
|
438 |
else |
|
439 |
{ |
|
440 |
filepos = 0; |
|
441 |
maxread = filelen; |
|
442 |
} /* else */ |
|
443 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
444 |
while ((totalread < filelen) && (totalread < 65557)) |
337 | 445 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
446 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, filepos), NULL, -1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
447 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
448 |
/* make sure we catch a signature between buffers. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
449 |
if (totalread != 0) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
450 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
451 |
if (__PHYSFS_platformRead(in, buf, maxread - 4, 1) != 1) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
452 |
return(-1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
453 |
*((PHYSFS_uint32 *) (&buf[maxread - 4])) = extra; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
454 |
totalread += maxread - 4; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
455 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
456 |
else |
337 | 457 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
458 |
if (__PHYSFS_platformRead(in, buf, maxread, 1) != 1) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
459 |
return(-1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
460 |
totalread += maxread; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
461 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
462 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
463 |
extra = *((PHYSFS_uint32 *) (&buf[0])); |
337 | 464 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
465 |
for (i = maxread - 4; i > 0; i--) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
466 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
467 |
if ((buf[i + 0] == 0x50) && |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
468 |
(buf[i + 1] == 0x4B) && |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
469 |
(buf[i + 2] == 0x05) && |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
470 |
(buf[i + 3] == 0x06) ) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
471 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
472 |
found = 1; /* that's the signature! */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
473 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
474 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
475 |
} /* for */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
476 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
477 |
if (found) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
478 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
479 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
480 |
filepos -= (maxread - 4); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
481 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
482 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
483 |
BAIL_IF_MACRO(!found, ERR_NOT_AN_ARCHIVE, -1); |
337 | 484 |
|
485 |
if (len != NULL) |
|
486 |
*len = filelen; |
|
487 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
488 |
return(filepos + i); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
489 |
} /* zip_find_end_of_central_dir */ |
337 | 490 |
|
491 |
||
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
492 |
static int ZIP_isArchive(const char *filename, int forWriting) |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
493 |
{ |
337 | 494 |
PHYSFS_uint32 sig; |
446
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
495 |
int retval = 0; |
337 | 496 |
void *in; |
497 |
||
498 |
in = __PHYSFS_platformOpenRead(filename); |
|
499 |
BAIL_IF_MACRO(in == NULL, NULL, 0); |
|
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
500 |
|
337 | 501 |
/* |
502 |
* The first thing in a zip file might be the signature of the |
|
503 |
* first local file record, so it makes for a quick determination. |
|
504 |
*/ |
|
446
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
505 |
if (readui32(in, &sig)) |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
506 |
{ |
446
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
507 |
retval = (sig == ZIP_LOCAL_FILE_SIG); |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
508 |
if (!retval) |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
509 |
{ |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
510 |
/* |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
511 |
* No sig...might be a ZIP with data at the start |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
512 |
* (a self-extracting executable, etc), so we'll have to do |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
513 |
* it the hard way... |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
514 |
*/ |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
515 |
retval = (zip_find_end_of_central_dir(in, NULL) != -1); |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
516 |
} /* if */ |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
517 |
} /* if */ |
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
518 |
|
337 | 519 |
__PHYSFS_platformClose(in); |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
520 |
return(retval); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
521 |
} /* ZIP_isArchive */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
522 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
523 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
524 |
static void zip_free_entries(ZIPentry *entries, PHYSFS_uint32 max) |
337 | 525 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
526 |
PHYSFS_uint32 i; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
527 |
for (i = 0; i < max; i++) |
337 | 528 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
529 |
ZIPentry *entry = &entries[i]; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
530 |
if (entry->name != NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
531 |
free(entry->name); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
532 |
} /* for */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
533 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
534 |
free(entries); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
535 |
} /* zip_free_entries */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
536 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
537 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
538 |
static ZIPentry *zip_find_entry(ZIPinfo *info, const char *path) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
539 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
540 |
ZIPentry *a = info->entries; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
541 |
PHYSFS_sint32 lo = 0; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
542 |
PHYSFS_sint32 hi = (PHYSFS_sint32) (info->entryCount - 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
543 |
PHYSFS_sint32 middle; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
544 |
int rc; |
337 | 545 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
546 |
while (lo <= hi) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
547 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
548 |
middle = lo + ((hi - lo) / 2); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
549 |
rc = strcmp(path, a[middle].name); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
550 |
if (rc == 0) /* found it! */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
551 |
return(&a[middle]); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
552 |
else if (rc > 0) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
553 |
lo = middle + 1; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
554 |
else |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
555 |
hi = middle - 1; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
556 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
557 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
558 |
BAIL_MACRO(ERR_NO_SUCH_FILE, NULL); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
559 |
} /* zip_find_entry */ |
337 | 560 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
561 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
562 |
/* Convert paths from old, buggy DOS zippers... */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
563 |
static void zip_convert_dos_path(ZIPentry *entry, char *path) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
564 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
565 |
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((entry->version >> 8) & 0xFF); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
566 |
if (hosttype == 0) /* FS_FAT_ */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
567 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
568 |
while (*path) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
569 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
570 |
if (*path == '\\') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
571 |
*path = '/'; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
572 |
path++; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
573 |
} /* while */ |
337 | 574 |
} /* if */ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
575 |
} /* zip_convert_dos_path */ |
337 | 576 |
|
577 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
578 |
static void zip_expand_symlink_path(char *path) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
579 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
580 |
char *ptr = path; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
581 |
char *prevptr = path; |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
582 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
583 |
while (1) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
584 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
585 |
ptr = strchr(ptr, '/'); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
586 |
if (ptr == NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
587 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
588 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
589 |
if (*(ptr + 1) == '.') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
590 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
591 |
if (*(ptr + 2) == '/') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
592 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
593 |
/* current dir in middle of string: ditch it. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
594 |
memmove(ptr, ptr + 2, strlen(ptr + 2) + 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
595 |
} /* else if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
596 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
597 |
else if (*(ptr + 2) == '\0') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
598 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
599 |
/* current dir at end of string: ditch it. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
600 |
*ptr = '\0'; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
601 |
} /* else if */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
602 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
603 |
else if (*(ptr + 2) == '.') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
604 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
605 |
if (*(ptr + 3) == '/') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
606 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
607 |
/* parent dir in middle: move back one, if possible. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
608 |
memmove(prevptr, ptr + 4, strlen(ptr + 4) + 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
609 |
ptr = prevptr; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
610 |
while (prevptr != path) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
611 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
612 |
prevptr--; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
613 |
if (*prevptr == '/') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
614 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
615 |
prevptr++; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
616 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
617 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
618 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
619 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
620 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
621 |
if (*(ptr + 3) == '\0') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
622 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
623 |
/* parent dir at end: move back one, if possible. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
624 |
*prevptr = '\0'; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
625 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
626 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
627 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
628 |
else |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
629 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
630 |
prevptr = ptr; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
631 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
632 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
633 |
} /* zip_expand_symlink_path */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
634 |
|
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
635 |
|
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
636 |
/* |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
637 |
* Look for the entry named by (path). If it exists, resolve it, and return |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
638 |
* a pointer to that entry. If it's another symlink, keep resolving until you |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
639 |
* hit a real file and then return a pointer to the final non-symlink entry. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
640 |
* If there's a problem, return NULL. (path) is always free()'d by this |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
641 |
* function. |
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
642 |
*/ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
643 |
static ZIPentry *zip_follow_symlink(void *in, ZIPinfo *info, char *path) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
644 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
645 |
ZIPentry *entry; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
646 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
647 |
zip_expand_symlink_path(path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
648 |
entry = zip_find_entry(info, path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
649 |
if (entry != NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
650 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
651 |
if (!zip_resolve(in, info, entry)) /* recursive! */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
652 |
entry = NULL; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
653 |
else |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
654 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
655 |
if (entry->symlink != NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
656 |
entry = entry->symlink; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
657 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
658 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
659 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
660 |
free(path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
661 |
return(entry); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
662 |
} /* zip_follow_symlink */ |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
663 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
664 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
665 |
static int zip_resolve_symlink(void *in, ZIPinfo *info, ZIPentry *entry) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
666 |
{ |
337 | 667 |
char *path; |
668 |
PHYSFS_uint32 size = entry->uncompressed_size; |
|
669 |
int rc = 0; |
|
670 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
671 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
672 |
* We've already parsed the local file header of the symlink at this |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
673 |
* point. Now we need to read the actual link from the file data and |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
674 |
* follow it. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
675 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
676 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
677 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, entry->offset), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
678 |
|
337 | 679 |
path = (char *) malloc(size + 1); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
680 |
BAIL_IF_MACRO(path == NULL, ERR_OUT_OF_MEMORY, 0); |
337 | 681 |
|
682 |
if (entry->compression_method == COMPMETH_NONE) |
|
683 |
rc = (__PHYSFS_platformRead(in, path, size, 1) == 1); |
|
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
684 |
|
337 | 685 |
else /* symlink target path is compressed... */ |
686 |
{ |
|
687 |
z_stream stream; |
|
340
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
688 |
PHYSFS_uint32 compsize = entry->compressed_size; |
337 | 689 |
PHYSFS_uint8 *compressed = (PHYSFS_uint8 *) malloc(compsize); |
690 |
if (compressed != NULL) |
|
691 |
{ |
|
692 |
if (__PHYSFS_platformRead(in, compressed, compsize, 1) == 1) |
|
693 |
{ |
|
694 |
memset(&stream, '\0', sizeof (z_stream)); |
|
695 |
stream.next_in = compressed; |
|
696 |
stream.avail_in = compsize; |
|
697 |
stream.next_out = path; |
|
698 |
stream.avail_out = size; |
|
699 |
if (zlib_err(inflateInit2(&stream, -MAX_WBITS)) == Z_OK) |
|
700 |
{ |
|
340
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
701 |
rc = zlib_err(inflate(&stream, Z_FINISH)); |
337 | 702 |
inflateEnd(&stream); |
340
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
703 |
|
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
704 |
/* both are acceptable outcomes... */ |
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
705 |
rc = ((rc == Z_OK) || (rc == Z_STREAM_END)); |
337 | 706 |
} /* if */ |
707 |
} /* if */ |
|
708 |
free(compressed); |
|
709 |
} /* if */ |
|
710 |
} /* else */ |
|
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
711 |
|
337 | 712 |
if (!rc) |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
713 |
free(path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
714 |
else |
337 | 715 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
716 |
path[entry->uncompressed_size] = '\0'; /* null-terminate it. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
717 |
zip_convert_dos_path(entry, path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
718 |
entry->symlink = zip_follow_symlink(in, info, path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
719 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
720 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
721 |
return(entry->symlink != NULL); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
722 |
} /* zip_resolve_symlink */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
723 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
724 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
725 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
726 |
* Parse the local file header of an entry, and update entry->offset. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
727 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
728 |
static int zip_parse_local(void *in, ZIPentry *entry) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
729 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
730 |
PHYSFS_uint32 ui32; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
731 |
PHYSFS_uint16 ui16; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
732 |
PHYSFS_uint16 fnamelen; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
733 |
PHYSFS_uint16 extralen; |
337 | 734 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
735 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, entry->offset), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
736 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
737 |
BAIL_IF_MACRO(ui32 != ZIP_LOCAL_FILE_SIG, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
738 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
739 |
BAIL_IF_MACRO(ui16 != entry->version_needed, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
740 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* general bits. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
741 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
742 |
BAIL_IF_MACRO(ui16 != entry->compression_method, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
743 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); /* date/time */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
744 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
745 |
BAIL_IF_MACRO(ui32 != entry->crc, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
746 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
747 |
BAIL_IF_MACRO(ui32 != entry->compressed_size, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
748 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
749 |
BAIL_IF_MACRO(ui32 != entry->uncompressed_size, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
750 |
BAIL_IF_MACRO(!readui16(in, &fnamelen), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
751 |
BAIL_IF_MACRO(!readui16(in, &extralen), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
752 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
753 |
entry->offset += fnamelen + extralen + 30; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
754 |
return(1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
755 |
} /* zip_parse_local */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
756 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
757 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
758 |
static int zip_resolve(void *in, ZIPinfo *info, ZIPentry *entry) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
759 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
760 |
int retval = 1; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
761 |
ZipResolveType resolve_type = entry->resolved; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
762 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
763 |
/* Don't bother if we've failed to resolve this entry before. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
764 |
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_FILE, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
765 |
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_SYMLINK, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
766 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
767 |
/* uhoh...infinite symlink loop! */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
768 |
BAIL_IF_MACRO(resolve_type == ZIP_RESOLVING, ERR_SYMLINK_LOOP, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
769 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
770 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
771 |
* We fix up the offset to point to the actual data on the |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
772 |
* first open, since we don't want to seek across the whole file on |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
773 |
* archive open (can be SLOW on large, CD-stored files), but we |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
774 |
* need to check the local file header...not just for corruption, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
775 |
* but since it stores offset info the central directory does not. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
776 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
777 |
if (resolve_type != ZIP_RESOLVED) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
778 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
779 |
entry->resolved = ZIP_RESOLVING; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
780 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
781 |
retval = zip_parse_local(in, entry); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
782 |
if (retval) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
783 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
784 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
785 |
* If it's a symlink, find the original file. This will cause |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
786 |
* resolution of other entries (other symlinks and, eventually, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
787 |
* the real file) if all goes well. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
788 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
789 |
if (resolve_type == ZIP_UNRESOLVED_SYMLINK) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
790 |
retval = zip_resolve_symlink(in, info, entry); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
791 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
792 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
793 |
if (resolve_type == ZIP_UNRESOLVED_SYMLINK) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
794 |
entry->resolved = ((retval) ? ZIP_RESOLVED : ZIP_BROKEN_SYMLINK); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
795 |
else if (resolve_type == ZIP_UNRESOLVED_FILE) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
796 |
entry->resolved = ((retval) ? ZIP_RESOLVED : ZIP_BROKEN_FILE); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
797 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
798 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
799 |
return(retval); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
800 |
} /* zip_resolve */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
801 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
802 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
803 |
static int zip_version_does_symlinks(PHYSFS_uint32 version) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
804 |
{ |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
805 |
int retval = 0; |
163
fc2b8ee5b420
Approved zeph's comments, fixed a few of my screwups.
Ryan C. Gordon <icculus@icculus.org>
parents:
161
diff
changeset
|
806 |
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((version >> 8) & 0xFF); |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
807 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
808 |
switch (hosttype) |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
809 |
{ |
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
810 |
/* |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
811 |
* These are the platforms that can NOT build an archive with |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
812 |
* symlinks, according to the Info-ZIP project. |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
813 |
*/ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
814 |
case 0: /* FS_FAT_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
815 |
case 1: /* AMIGA_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
816 |
case 2: /* VMS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
817 |
case 4: /* VM_CSM_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
818 |
case 6: /* FS_HPFS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
819 |
case 11: /* FS_NTFS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
820 |
case 14: /* FS_VFAT_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
821 |
case 13: /* ACORN_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
822 |
case 15: /* MVS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
823 |
case 18: /* THEOS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
824 |
break; /* do nothing. */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
825 |
|
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
826 |
default: /* assume the rest to be unix-like. */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
827 |
retval = 1; |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
828 |
break; |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
829 |
} /* switch */ |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
830 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
831 |
return(retval); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
832 |
} /* zip_version_does_symlinks */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
833 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
834 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
835 |
static int zip_entry_is_symlink(ZIPentry *entry) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
836 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
837 |
return((entry->resolved == ZIP_UNRESOLVED_SYMLINK) || |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
838 |
(entry->resolved == ZIP_BROKEN_SYMLINK) || |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
839 |
(entry->symlink)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
840 |
} /* zip_entry_is_symlink */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
841 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
842 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
843 |
static int zip_has_symlink_attr(ZIPentry *entry, PHYSFS_uint32 extern_attr) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
844 |
{ |
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
845 |
PHYSFS_uint16 xattr = ((extern_attr >> 16) & 0xFFFF); |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
846 |
|
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
847 |
return ( |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
848 |
(zip_version_does_symlinks(entry->version)) && |
337 | 849 |
(entry->uncompressed_size > 0) && |
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
850 |
((xattr & UNIX_FILETYPE_MASK) == UNIX_FILETYPE_SYMLINK) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
851 |
); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
852 |
} /* zip_has_symlink_attr */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
853 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
854 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
855 |
PHYSFS_sint64 zip_dos_time_to_physfs_time(PHYSFS_uint32 dostime) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
856 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
857 |
PHYSFS_uint32 dosdate; |
337 | 858 |
struct tm unixtime; |
859 |
memset(&unixtime, '\0', sizeof (unixtime)); |
|
860 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
861 |
dosdate = (PHYSFS_uint32) ((dostime >> 16) & 0xFFFF); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
862 |
dostime &= 0xFFFF; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
863 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
864 |
/* dissect date */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
865 |
unixtime.tm_year = ((dosdate >> 9) & 0x7F) + 80; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
866 |
unixtime.tm_mon = ((dosdate >> 5) & 0x0F) - 1; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
867 |
unixtime.tm_mday = ((dosdate ) & 0x1F); |
337 | 868 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
869 |
/* dissect time */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
870 |
unixtime.tm_hour = ((dostime >> 11) & 0x1F); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
871 |
unixtime.tm_min = ((dostime >> 5) & 0x3F); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
872 |
unixtime.tm_sec = ((dostime << 1) & 0x3E); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
873 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
874 |
/* let mktime calculate daylight savings time. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
875 |
unixtime.tm_isdst = -1; |
337 | 876 |
|
877 |
return((PHYSFS_sint64) mktime(&unixtime)); |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
878 |
} /* zip_dos_time_to_physfs_time */ |
337 | 879 |
|
880 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
881 |
static int zip_load_entry(void *in, ZIPentry *entry, PHYSFS_uint32 ofs_fixup) |
337 | 882 |
{ |
883 |
PHYSFS_uint16 fnamelen, extralen, commentlen; |
|
884 |
PHYSFS_uint32 external_attr; |
|
885 |
PHYSFS_uint16 ui16; |
|
886 |
PHYSFS_uint32 ui32; |
|
887 |
PHYSFS_sint64 si64; |
|
888 |
||
889 |
/* sanity check with central directory signature... */ |
|
890 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
891 |
BAIL_IF_MACRO(ui32 != ZIP_CENTRAL_DIR_SIG, ERR_CORRUPTED, 0); |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
892 |
|
337 | 893 |
/* Get the pertinent parts of the record... */ |
894 |
BAIL_IF_MACRO(!readui16(in, &entry->version), NULL, 0); |
|
895 |
BAIL_IF_MACRO(!readui16(in, &entry->version_needed), NULL, 0); |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
896 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* general bits */ |
337 | 897 |
BAIL_IF_MACRO(!readui16(in, &entry->compression_method), NULL, 0); |
898 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
899 |
entry->last_mod_time = zip_dos_time_to_physfs_time(ui32); |
337 | 900 |
BAIL_IF_MACRO(!readui32(in, &entry->crc), NULL, 0); |
901 |
BAIL_IF_MACRO(!readui32(in, &entry->compressed_size), NULL, 0); |
|
902 |
BAIL_IF_MACRO(!readui32(in, &entry->uncompressed_size), NULL, 0); |
|
903 |
BAIL_IF_MACRO(!readui16(in, &fnamelen), NULL, 0); |
|
904 |
BAIL_IF_MACRO(!readui16(in, &extralen), NULL, 0); |
|
905 |
BAIL_IF_MACRO(!readui16(in, &commentlen), NULL, 0); |
|
906 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* disk number start */ |
|
907 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* internal file attribs */ |
|
908 |
BAIL_IF_MACRO(!readui32(in, &external_attr), NULL, 0); |
|
909 |
BAIL_IF_MACRO(!readui32(in, &entry->offset), NULL, 0); |
|
910 |
entry->offset += ofs_fixup; |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
911 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
912 |
entry->symlink = NULL; /* will be resolved later, if necessary. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
913 |
entry->resolved = (zip_has_symlink_attr(entry, external_attr)) ? |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
914 |
ZIP_UNRESOLVED_SYMLINK : ZIP_UNRESOLVED_FILE; |
337 | 915 |
|
916 |
entry->name = (char *) malloc(fnamelen + 1); |
|
917 |
BAIL_IF_MACRO(entry->name == NULL, ERR_OUT_OF_MEMORY, 0); |
|
918 |
if (__PHYSFS_platformRead(in, entry->name, fnamelen, 1) != 1) |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
919 |
goto zip_load_entry_puked; |
337 | 920 |
|
921 |
entry->name[fnamelen] = '\0'; /* null-terminate the filename. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
922 |
zip_convert_dos_path(entry, entry->name); |
337 | 923 |
|
924 |
si64 = __PHYSFS_platformTell(in); |
|
925 |
if (si64 == -1) |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
926 |
goto zip_load_entry_puked; |
337 | 927 |
|
928 |
/* seek to the start of the next entry in the central directory... */ |
|
929 |
if (!__PHYSFS_platformSeek(in, si64 + extralen + commentlen)) |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
930 |
goto zip_load_entry_puked; |
337 | 931 |
|
932 |
return(1); /* success. */ |
|
933 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
934 |
zip_load_entry_puked: |
337 | 935 |
free(entry->name); |
936 |
return(0); /* failure. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
937 |
} /* zip_load_entry */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
938 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
939 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
940 |
static void zip_entry_swap(ZIPentry *a, PHYSFS_uint32 one, PHYSFS_uint32 two) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
941 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
942 |
ZIPentry tmp; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
943 |
memcpy(&tmp, &a[one], sizeof (ZIPentry)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
944 |
memcpy(&a[one], &a[two], sizeof (ZIPentry)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
945 |
memcpy(&a[two], &tmp, sizeof (ZIPentry)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
946 |
} /* zip_entry_swap */ |
337 | 947 |
|
948 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
949 |
static void zip_quick_sort(ZIPentry *a, PHYSFS_uint32 lo, PHYSFS_uint32 hi) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
950 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
951 |
PHYSFS_uint32 i; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
952 |
PHYSFS_uint32 j; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
953 |
ZIPentry *v; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
954 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
955 |
if ((hi - lo) > ZIP_QUICKSORT_THRESHOLD) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
956 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
957 |
i = (hi + lo) / 2; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
958 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
959 |
if (strcmp(a[lo].name, a[i].name) > 0) zip_entry_swap(a, lo, i); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
960 |
if (strcmp(a[lo].name, a[hi].name) > 0) zip_entry_swap(a, lo, hi); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
961 |
if (strcmp(a[i].name, a[hi].name) > 0) zip_entry_swap(a, i, hi); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
962 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
963 |
j = hi - 1; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
964 |
zip_entry_swap(a, i, j); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
965 |
i = lo; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
966 |
v = &a[j]; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
967 |
while (1) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
968 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
969 |
while(strcmp(a[++i].name, v->name) < 0) {} |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
970 |
while(strcmp(a[--j].name, v->name) > 0) {} |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
971 |
if (j < i) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
972 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
973 |
zip_entry_swap(a, i, j); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
974 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
975 |
zip_entry_swap(a, i, hi-1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
976 |
zip_quick_sort(a, lo, j); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
977 |
zip_quick_sort(a, i+1, hi); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
978 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
979 |
} /* zip_quick_sort */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
980 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
981 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
982 |
static void zip_insertion_sort(ZIPentry *a, PHYSFS_uint32 lo, PHYSFS_uint32 hi) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
983 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
984 |
PHYSFS_uint32 i; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
985 |
PHYSFS_uint32 j; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
986 |
ZIPentry tmp; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
987 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
988 |
for (i = lo + 1; i <= hi; i++) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
989 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
990 |
memcpy(&tmp, &a[i], sizeof (ZIPentry)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
991 |
j = i; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
992 |
while ((j > lo) && (strcmp(a[j - 1].name, tmp.name) > 0)) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
993 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
994 |
memcpy(&a[j], &a[j - 1], sizeof (ZIPentry)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
995 |
j--; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
996 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
997 |
memcpy(&a[j], &tmp, sizeof (ZIPentry)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
998 |
} /* for */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
999 |
} /* zip_insertion_sort */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1000 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1001 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1002 |
static void zip_sort_entries(ZIPentry *entries, PHYSFS_uint32 max) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1003 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1004 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1005 |
* Fast Quicksort algorithm inspired by code from here: |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1006 |
* http://www.cs.ubc.ca/spider/harrison/Java/sorting-demo.html |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1007 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1008 |
if (max <= ZIP_QUICKSORT_THRESHOLD) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1009 |
zip_quick_sort(entries, 0, max - 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1010 |
zip_insertion_sort(entries, 0, max - 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1011 |
} /* zip_sort_entries */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1012 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1013 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1014 |
static int zip_load_entries(void *in, DirHandle *dirh, |
337 | 1015 |
PHYSFS_uint32 data_ofs, PHYSFS_uint32 central_ofs) |
1016 |
{ |
|
1017 |
ZIPinfo *info = (ZIPinfo *) dirh->opaque; |
|
1018 |
PHYSFS_uint32 max = info->entryCount; |
|
1019 |
PHYSFS_uint32 i; |
|
1020 |
||
1021 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, central_ofs), NULL, 0); |
|
1022 |
||
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1023 |
info->entries = (ZIPentry *) malloc(sizeof (ZIPentry) * max); |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1024 |
BAIL_IF_MACRO(info->entries == NULL, ERR_OUT_OF_MEMORY, 0); |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1025 |
|
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1026 |
for (i = 0; i < max; i++) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
1027 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1028 |
if (!zip_load_entry(in, &info->entries[i], data_ofs)) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1029 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1030 |
zip_free_entries(info->entries, i); |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1031 |
return(0); |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
1032 |
} /* if */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1033 |
} /* for */ |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1034 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1035 |
zip_sort_entries(info->entries, max); |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1036 |
return(1); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1037 |
} /* zip_load_entries */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1038 |
|
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1039 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1040 |
static int zip_parse_end_of_central_dir(void *in, DirHandle *dirh, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1041 |
PHYSFS_uint32 *data_start, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1042 |
PHYSFS_uint32 *central_dir_ofs) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1043 |
{ |
337 | 1044 |
ZIPinfo *zipinfo = (ZIPinfo *) dirh->opaque; |
1045 |
PHYSFS_uint32 ui32; |
|
1046 |
PHYSFS_uint16 ui16; |
|
1047 |
PHYSFS_sint64 len; |
|
1048 |
PHYSFS_sint64 pos; |
|
1049 |
||
1050 |
/* find the end-of-central-dir record, and seek to it. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1051 |
pos = zip_find_end_of_central_dir(in, &len); |
337 | 1052 |
BAIL_IF_MACRO(pos == -1, NULL, 0); |
1053 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, pos), NULL, 0); |
|
1054 |
||
1055 |
/* check signature again, just in case. */ |
|
1056 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
1057 |
BAIL_IF_MACRO(ui32 != ZIP_END_OF_CENTRAL_DIR_SIG, ERR_NOT_AN_ARCHIVE, 0); |
|
1058 |
||
1059 |
/* number of this disk */ |
|
1060 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1061 |
BAIL_IF_MACRO(ui16 != 0, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1062 |
||
1063 |
/* number of the disk with the start of the central directory */ |
|
1064 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1065 |
BAIL_IF_MACRO(ui16 != 0, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1066 |
||
1067 |
/* total number of entries in the central dir on this disk */ |
|
1068 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1069 |
||
1070 |
/* total number of entries in the central dir */ |
|
1071 |
BAIL_IF_MACRO(!readui16(in, &zipinfo->entryCount), NULL, 0); |
|
1072 |
BAIL_IF_MACRO(ui16 != zipinfo->entryCount, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1073 |
||
1074 |
/* size of the central directory */ |
|
1075 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1076 |
|
337 | 1077 |
/* offset of central directory */ |
1078 |
BAIL_IF_MACRO(!readui32(in, central_dir_ofs), NULL, 0); |
|
1079 |
BAIL_IF_MACRO(pos < *central_dir_ofs + ui32, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1080 |
||
1081 |
/* |
|
1082 |
* For self-extracting archives, etc, there's crapola in the file |
|
1083 |
* before the zipfile records; we calculate how much data there is |
|
1084 |
* prepended by determining how far the central directory offset is |
|
1085 |
* from where it is supposed to be (start of end-of-central-dir minus |
|
1086 |
* sizeof central dir)...the difference in bytes is how much arbitrary |
|
1087 |
* data is at the start of the physical file. |
|
1088 |
*/ |
|
1089 |
*data_start = pos - (*central_dir_ofs + ui32); |
|
1090 |
||
1091 |
/* Now that we know the difference, fix up the central dir offset... */ |
|
1092 |
*central_dir_ofs += *data_start; |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1093 |
|
337 | 1094 |
/* zipfile comment length */ |
1095 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1096 |
||
1097 |
/* |
|
1098 |
* Make sure that the comment length matches to the end of file... |
|
1099 |
* If it doesn't, we're either in the wrong part of the file, or the |
|
1100 |
* file is corrupted, but we give up either way. |
|
1101 |
*/ |
|
1102 |
BAIL_IF_MACRO((pos + 22 + ui16) != len, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1103 |
||
1104 |
return(1); /* made it. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1105 |
} /* zip_parse_end_of_central_dir */ |
337 | 1106 |
|
1107 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1108 |
static DirHandle *zip_allocate_dirhandle(const char *name) |
337 | 1109 |
{ |
1110 |
char *ptr; |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1111 |
ZIPinfo *info; |
337 | 1112 |
DirHandle *retval = malloc(sizeof (DirHandle)); |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1113 |
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL); |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1114 |
|
337 | 1115 |
memset(retval, '\0', sizeof (DirHandle)); |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
1116 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1117 |
info = (ZIPinfo *) malloc(sizeof (ZIPinfo)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1118 |
if (info == NULL) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1119 |
{ |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1120 |
free(retval); |
337 | 1121 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
1122 |
} /* if */ |
|
1123 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1124 |
memset(info, '\0', sizeof (ZIPinfo)); |
337 |