ReactOS 0.4.15-dev-7942-gd23573b
ioapi.c
Go to the documentation of this file.
1/* ioapi.h -- IO base function header for compress/uncompress .zip
2 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
3
4 Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
5
6 Modifications for Zip64 support
7 Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
8
9 For more info read MiniZip_info.txt
10
11*/
12
13#if defined(_WIN32) && (!(defined(_CRT_SECURE_NO_WARNINGS)))
14 #define _CRT_SECURE_NO_WARNINGS
15#endif
16
17#if defined(__APPLE__) || defined(IOAPI_NO_64)
18// In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions
19#define FOPEN_FUNC(filename, mode) fopen(filename, mode)
20#define FTELLO_FUNC(stream) ftello(stream)
21#define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
22#else
23#define FOPEN_FUNC(filename, mode) fopen64(filename, mode)
24#define FTELLO_FUNC(stream) ftello64(stream)
25#define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
26#endif
27
28
29#include "ioapi.h"
30
31voidpf call_zopen64 (const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode)
32{
33 if (pfilefunc->zfile_func64.zopen64_file != NULL)
34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
35 else
36 {
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
38 }
39}
40
41long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin)
42{
43 if (pfilefunc->zfile_func64.zseek64_file != NULL)
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
45 else
46 {
47 uLong offsetTruncated = (uLong)offset;
48 if (offsetTruncated != offset)
49 return -1;
50 else
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
52 }
53}
54
56{
57 if (pfilefunc->zfile_func64.zseek64_file != NULL)
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
59 else
60 {
61 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
62 if ((tell_uLong) == MAXU32)
63 return (ZPOS64_T)-1;
64 else
65 return tell_uLong;
66 }
67}
68
69#ifndef __REACTOS__
71{
72 p_filefunc64_32->zfile_func64.zopen64_file = NULL;
73 p_filefunc64_32->zopen32_file = p_filefunc32->zopen_file;
74 p_filefunc64_32->zfile_func64.zerror_file = p_filefunc32->zerror_file;
75 p_filefunc64_32->zfile_func64.zread_file = p_filefunc32->zread_file;
76 p_filefunc64_32->zfile_func64.zwrite_file = p_filefunc32->zwrite_file;
77 p_filefunc64_32->zfile_func64.ztell64_file = NULL;
78 p_filefunc64_32->zfile_func64.zseek64_file = NULL;
79 p_filefunc64_32->zfile_func64.zclose_file = p_filefunc32->zclose_file;
80 p_filefunc64_32->zfile_func64.zerror_file = p_filefunc32->zerror_file;
81 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
82 p_filefunc64_32->zseek32_file = p_filefunc32->zseek_file;
83 p_filefunc64_32->ztell32_file = p_filefunc32->ztell_file;
84}
85
86
87
88static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
93static int ZCALLBACK fclose_file_func OF((voidpf opaque, voidpf stream));
94static int ZCALLBACK ferror_file_func OF((voidpf opaque, voidpf stream));
95
96static voidpf ZCALLBACK fopen_file_func (voidpf opaque, const char* filename, int mode)
97{
98 FILE* file = NULL;
99 const char* mode_fopen = NULL;
100 (void)opaque;
102 mode_fopen = "rb";
103 else
105 mode_fopen = "r+b";
106 else
108 mode_fopen = "wb";
109
110 if ((filename!=NULL) && (mode_fopen != NULL))
111 file = fopen(filename, mode_fopen);
112 return file;
113}
114
115static voidpf ZCALLBACK fopen64_file_func (voidpf opaque, const void* filename, int mode)
116{
117 FILE* file = NULL;
118 const char* mode_fopen = NULL;
119 (void)opaque;
121 mode_fopen = "rb";
122 else
124 mode_fopen = "r+b";
125 else
127 mode_fopen = "wb";
128
129 if ((filename!=NULL) && (mode_fopen != NULL))
130 file = FOPEN_FUNC((const char*)filename, mode_fopen);
131 return file;
132}
133
134
136{
137 uLong ret;
138 (void)opaque;
139 ret = (uLong)fread(buf, 1, (size_t)size, (FILE *)stream);
140 return ret;
141}
142
144{
145 uLong ret;
146 (void)opaque;
147 ret = (uLong)fwrite(buf, 1, (size_t)size, (FILE *)stream);
148 return ret;
149}
150
152{
153 long ret;
154 (void)opaque;
155 ret = ftell((FILE *)stream);
156 return ret;
157}
158
159
161{
163 (void)opaque;
165 return ret;
166}
167
169{
170 int fseek_origin=0;
171 long ret;
172 (void)opaque;
173 switch (origin)
174 {
176 fseek_origin = SEEK_CUR;
177 break;
179 fseek_origin = SEEK_END;
180 break;
182 fseek_origin = SEEK_SET;
183 break;
184 default: return -1;
185 }
186 ret = 0;
187 if (fseek((FILE *)stream, (long)offset, fseek_origin) != 0)
188 ret = -1;
189 return ret;
190}
191
193{
194 int fseek_origin=0;
195 long ret;
196 (void)opaque;
197 switch (origin)
198 {
200 fseek_origin = SEEK_CUR;
201 break;
203 fseek_origin = SEEK_END;
204 break;
206 fseek_origin = SEEK_SET;
207 break;
208 default: return -1;
209 }
210 ret = 0;
211
212 if(FSEEKO_FUNC((FILE *)stream, (z_off_t)offset, fseek_origin) != 0)
213 ret = -1;
214
215 return ret;
216}
217
218
220{
221 int ret;
222 (void)opaque;
223 ret = fclose((FILE *)stream);
224 return ret;
225}
226
228{
229 int ret;
230 (void)opaque;
231 ret = ferror((FILE *)stream);
232 return ret;
233}
234
235void fill_fopen_filefunc (pzlib_filefunc_def)
236 zlib_filefunc_def* pzlib_filefunc_def;
237{
238 pzlib_filefunc_def->zopen_file = fopen_file_func;
239 pzlib_filefunc_def->zread_file = fread_file_func;
240 pzlib_filefunc_def->zwrite_file = fwrite_file_func;
241 pzlib_filefunc_def->ztell_file = ftell_file_func;
242 pzlib_filefunc_def->zseek_file = fseek_file_func;
243 pzlib_filefunc_def->zclose_file = fclose_file_func;
244 pzlib_filefunc_def->zerror_file = ferror_file_func;
245 pzlib_filefunc_def->opaque = NULL;
246}
247
249{
250 pzlib_filefunc_def->zopen64_file = fopen64_file_func;
251 pzlib_filefunc_def->zread_file = fread_file_func;
252 pzlib_filefunc_def->zwrite_file = fwrite_file_func;
253 pzlib_filefunc_def->ztell64_file = ftell64_file_func;
254 pzlib_filefunc_def->zseek64_file = fseek64_file_func;
255 pzlib_filefunc_def->zclose_file = fclose_file_func;
256 pzlib_filefunc_def->zerror_file = ferror_file_func;
257 pzlib_filefunc_def->opaque = NULL;
258}
259
260#endif
#define SEEK_END
Definition: cabinet.c:29
#define NULL
Definition: types.h:112
unsigned long uLong
Definition: zlib.h:39
void FAR * voidpf
Definition: zlib.h:42
GLsizeiptr size
Definition: glext.h:5919
GLenum mode
Definition: glext.h:6217
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLintptr offset
Definition: glext.h:5920
_Check_return_ _CRTIMP int __cdecl ferror(_In_ FILE *_File)
_Check_return_opt_ _CRTIMP size_t __cdecl fread(_Out_writes_bytes_(_ElementSize *_Count) void *_DstBuf, _In_ size_t _ElementSize, _In_ size_t _Count, _Inout_ FILE *_File)
_Check_return_ _CRTIMP FILE *__cdecl fopen(_In_z_ const char *_Filename, _In_z_ const char *_Mode)
_Check_return_opt_ _CRTIMP int __cdecl fseek(_Inout_ FILE *_File, _In_ long _Offset, _In_ int _Origin)
_Check_return_opt_ _CRTIMP int __cdecl fclose(_Inout_ FILE *_File)
_Check_return_ _CRTIMP long __cdecl ftell(_Inout_ FILE *_File)
_Check_return_opt_ _CRTIMP size_t __cdecl fwrite(_In_reads_bytes_(_Size *_Count) const void *_Str, _In_ size_t _Size, _In_ size_t _Count, _Inout_ FILE *_File)
static long ZCALLBACK fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin)
Definition: ioapi.c:168
static ZPOS64_T ZCALLBACK ftell64_file_func(voidpf opaque, voidpf stream)
Definition: ioapi.c:160
void fill_zlib_filefunc64_32_def_from_filefunc32(zlib_filefunc64_32_def *p_filefunc64_32, const zlib_filefunc_def *p_filefunc32)
Definition: ioapi.c:70
#define FSEEKO_FUNC(stream, offset, origin)
Definition: ioapi.c:25
static long ZCALLBACK fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
Definition: ioapi.c:192
static int ZCALLBACK ferror_file_func(voidpf opaque, voidpf stream)
Definition: ioapi.c:227
#define FOPEN_FUNC(filename, mode)
Definition: ioapi.c:23
static uLong ZCALLBACK fwrite_file_func(voidpf opaque, voidpf stream, const void *buf, uLong size)
Definition: ioapi.c:143
long call_zseek64(const zlib_filefunc64_32_def *pfilefunc, voidpf filestream, ZPOS64_T offset, int origin)
Definition: ioapi.c:41
void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def)
Definition: ioapi.c:248
void fill_fopen_filefunc(zlib_filefunc_def *pzlib_filefunc_def)
Definition: ioapi.c:235
voidpf call_zopen64(const zlib_filefunc64_32_def *pfilefunc, const void *filename, int mode)
Definition: ioapi.c:31
ZPOS64_T call_ztell64(const zlib_filefunc64_32_def *pfilefunc, voidpf filestream)
Definition: ioapi.c:55
#define FTELLO_FUNC(stream)
Definition: ioapi.c:24
static voidpf ZCALLBACK fopen64_file_func(voidpf opaque, const void *filename, int mode)
Definition: ioapi.c:115
static voidpf ZCALLBACK fopen_file_func(voidpf opaque, const char *filename, int mode)
Definition: ioapi.c:96
static long ZCALLBACK ftell_file_func(voidpf opaque, voidpf stream)
Definition: ioapi.c:151
static uLong ZCALLBACK fread_file_func(voidpf opaque, voidpf stream, void *buf, uLong size)
Definition: ioapi.c:135
static int ZCALLBACK fclose_file_func(voidpf opaque, voidpf stream)
Definition: ioapi.c:219
const char * filename
Definition: ioapi.h:137
#define ZLIB_FILEFUNC_MODE_READWRITEFILTER
Definition: ioapi.h:120
voidpf uLong int origin
Definition: ioapi.h:144
#define ZLIB_FILEFUNC_MODE_EXISTING
Definition: ioapi.h:122
#define ZLIB_FILEFUNC_SEEK_CUR
Definition: ioapi.h:114
#define ZLIB_FILEFUNC_SEEK_SET
Definition: ioapi.h:116
#define ZCALLBACK
Definition: ioapi.h:130
#define MAXU32
Definition: ioapi.h:106
#define ZLIB_FILEFUNC_MODE_CREATE
Definition: ioapi.h:123
#define ZLIB_FILEFUNC_SEEK_END
Definition: ioapi.h:115
#define ZLIB_FILEFUNC_MODE_READ
Definition: ioapi.h:118
unsigned long long int ZPOS64_T
Definition: ioapi.h:99
#define SEEK_SET
Definition: jmemansi.c:26
#define SEEK_CUR
Definition: util.h:63
Definition: fci.c:127
Definition: parse.h:23
seek_file_func zseek32_file
Definition: ioapi.h:185
zlib_filefunc64_def zfile_func64
Definition: ioapi.h:182
open_file_func zopen32_file
Definition: ioapi.h:183
tell_file_func ztell32_file
Definition: ioapi.h:184
write_file_func zwrite_file
Definition: ioapi.h:168
open64_file_func zopen64_file
Definition: ioapi.h:166
read_file_func zread_file
Definition: ioapi.h:167
tell64_file_func ztell64_file
Definition: ioapi.h:169
close_file_func zclose_file
Definition: ioapi.h:171
seek64_file_func zseek64_file
Definition: ioapi.h:170
testerror_file_func zerror_file
Definition: ioapi.h:172
seek_file_func zseek_file
Definition: ioapi.h:154
open_file_func zopen_file
Definition: ioapi.h:150
testerror_file_func zerror_file
Definition: ioapi.h:156
write_file_func zwrite_file
Definition: ioapi.h:152
read_file_func zread_file
Definition: ioapi.h:151
close_file_func zclose_file
Definition: ioapi.h:155
tell_file_func ztell_file
Definition: ioapi.h:153
int ret
#define z_off_t
Definition: zconf.h:517
#define OF(args)
Definition: zconf.h:295