1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
/** \file znzlib.c
\brief Low level i/o interface to compressed and noncompressed files.
Written by Mark Jenkinson, FMRIB
This library provides an interface to both compressed (gzip/zlib) and
uncompressed (normal) file IO. The functions are written to have the
same interface as the standard file IO functions.
To use this library instead of normal file IO, the following changes
are required:
- replace all instances of FILE* with znzFile
- change the name of all function calls, replacing the initial character
f with the znz (e.g. fseek becomes znzseek)
one exception is rewind() -> znzrewind()
- add a third parameter to all calls to znzopen (previously fopen)
that specifies whether to use compression (1) or not (0)
- use znz_isnull rather than any (pointer == NULL) comparisons in the code
for znzfile types (normally done after a return from znzopen)
NB: seeks for writable files with compression are quite restricted
*/
#include "znzlib.h"
/*
znzlib.c (zipped or non-zipped library)
***** This code is released to the public domain. *****
***** Author: Mark Jenkinson, FMRIB Centre, University of Oxford *****
***** Date: September 2004 *****
***** Neither the FMRIB Centre, the University of Oxford, nor any of *****
***** its employees imply any warranty of usefulness of this software *****
***** for any purpose, and do not assume any liability for damages, *****
***** incidental or otherwise, caused by any use of this document. *****
*/
/* Note extra argument (use_compression) where
use_compression==0 is no compression
use_compression!=0 uses zlib (gzip) compression
*/
znzFile znzopen(const char *path, const char *mode, int use_compression)
{
znzFile file;
file = (znzFile) calloc(1,sizeof(struct znzptr));
if( file == NULL ){
fprintf(stderr,"** ERROR: znzopen failed to alloc znzptr\n");
return NULL;
}
file->nzfptr = NULL;
#ifdef HAVE_ZLIB
file->zfptr = NULL;
if (use_compression) {
file->withz = 1;
if((file->zfptr = gzopen(path,mode)) == NULL) {
free(file);
file = NULL;
}
} else {
#endif
file->withz = 0;
if((file->nzfptr = fopen(path,mode)) == NULL) {
free(file);
file = NULL;
}
#ifdef HAVE_ZLIB
}
#endif
return file;
}
znzFile znzdopen(int fd, const char *mode, int use_compression)
{
znzFile file;
file = (znzFile) calloc(1,sizeof(struct znzptr));
if( file == NULL ){
fprintf(stderr,"** ERROR: znzdopen failed to alloc znzptr\n");
return NULL;
}
#ifdef HAVE_ZLIB
if (use_compression) {
file->withz = 1;
file->zfptr = gzdopen(fd,mode);
file->nzfptr = NULL;
} else {
#endif
file->withz = 0;
#ifdef HAVE_FDOPEN
file->nzfptr = fdopen(fd,mode);
#endif
#ifdef HAVE_ZLIB
file->zfptr = NULL;
};
#endif
return file;
}
int Xznzclose(znzFile * file)
{
int retval = 0;
if (*file!=NULL) {
#ifdef HAVE_ZLIB
if ((*file)->zfptr!=NULL) { retval = gzclose((*file)->zfptr); }
#endif
if ((*file)->nzfptr!=NULL) { retval = fclose((*file)->nzfptr); }
free(*file);
*file = NULL;
}
return retval;
}
/* we already assume ints are 4 bytes */
#undef ZNZ_MAX_BLOCK_SIZE
#define ZNZ_MAX_BLOCK_SIZE (1<<30)
size_t znzread(void* buf, size_t size, size_t nmemb, znzFile file)
{
#ifdef HAVE_ZLIB
size_t remain = size*nmemb;
char * cbuf = (char *)buf;
unsigned n2read;
int nread;
#endif
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) {
/* gzread/write take unsigned int length, so maybe read in int pieces
(noted by M Hanke, example given by M Adler) 6 July 2010 [rickr] */
while( remain > 0 ) {
n2read = (remain < ZNZ_MAX_BLOCK_SIZE) ? remain : ZNZ_MAX_BLOCK_SIZE;
nread = gzread(file->zfptr, (void *)cbuf, n2read);
if( nread < 0 ) return nread; /* returns -1 on error */
remain -= nread;
cbuf += nread;
/* require reading n2read bytes, so we don't get stuck */
if( nread < (int)n2read ) break; /* return will be short */
}
/* warn of a short read that will seem complete */
if( remain > 0 && remain < size )
fprintf(stderr,"** znzread: read short by %u bytes\n",(unsigned)remain);
return nmemb - remain/size; /* return number of members processed */
}
#endif
return fread(buf,size,nmemb,file->nzfptr);
}
size_t znzwrite(const void* buf, size_t size, size_t nmemb, znzFile file)
{
#ifdef HAVE_ZLIB
size_t remain = size*nmemb;
const char * cbuf = buf;
unsigned n2write;
int nwritten;
#endif
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) {
while( remain > 0 ) {
n2write = (remain < ZNZ_MAX_BLOCK_SIZE) ? remain : ZNZ_MAX_BLOCK_SIZE;
nwritten = gzwrite(file->zfptr, cbuf, n2write);
/* gzread returns 0 on error, but in case that ever changes... */
if( nwritten < 0 ) return nwritten;
remain -= nwritten;
cbuf += nwritten;
/* require writing n2write bytes, so we don't get stuck */
if( nwritten < (int)n2write ) break;
}
/* warn of a short write that will seem complete */
if( remain > 0 && remain < size )
fprintf(stderr,"** znzwrite: write short by %u bytes\n",(unsigned)remain);
return nmemb - remain/size; /* return number of members processed */
}
#endif
return fwrite(buf,size,nmemb,file->nzfptr);
}
long znzseek(znzFile file, long offset, int whence)
{
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return (long) gzseek(file->zfptr,offset,whence);
#endif
return fseek(file->nzfptr,offset,whence);
}
int znzrewind(znzFile stream)
{
if (stream==NULL) { return 0; }
#ifdef HAVE_ZLIB
/* On some systems, gzrewind() fails for uncompressed files.
Use gzseek(), instead. 10, May 2005 [rickr]
if (stream->zfptr!=NULL) return gzrewind(stream->zfptr);
*/
if (stream->zfptr!=NULL) return (int)gzseek(stream->zfptr, 0L, SEEK_SET);
#endif
rewind(stream->nzfptr);
return 0;
}
long znztell(znzFile file)
{
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return (long) gztell(file->zfptr);
#endif
return ftell(file->nzfptr);
}
int znzputs(const char * str, znzFile file)
{
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return gzputs(file->zfptr,str);
#endif
return fputs(str,file->nzfptr);
}
char * znzgets(char* str, int size, znzFile file)
{
if (file==NULL) { return NULL; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return gzgets(file->zfptr,str,size);
#endif
return fgets(str,size,file->nzfptr);
}
int znzflush(znzFile file)
{
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return gzflush(file->zfptr,Z_SYNC_FLUSH);
#endif
return fflush(file->nzfptr);
}
int znzeof(znzFile file)
{
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return gzeof(file->zfptr);
#endif
return feof(file->nzfptr);
}
int znzputc(int c, znzFile file)
{
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return gzputc(file->zfptr,c);
#endif
return fputc(c,file->nzfptr);
}
int znzgetc(znzFile file)
{
if (file==NULL) { return 0; }
#ifdef HAVE_ZLIB
if (file->zfptr!=NULL) return gzgetc(file->zfptr);
#endif
return fgetc(file->nzfptr);
}
#if !defined (WIN32)
int znzprintf(znzFile stream, const char *format, ...)
{
int retval=0;
#ifdef HAVE_ZLIB
char *tmpstr;
#endif
va_list va;
if (stream==NULL) { return 0; }
va_start(va, format);
#ifdef HAVE_ZLIB
if (stream->zfptr!=NULL) {
int size; /* local to HAVE_ZLIB block */
size = strlen(format) + 1000000; /* overkill I hope */
tmpstr = (char *)calloc(1, size);
if( tmpstr == NULL ){
fprintf(stderr,"** ERROR: znzprintf failed to alloc %d bytes\n", size);
va_end(va);
return retval;
}
vsprintf(tmpstr,format,va);
retval=gzprintf(stream->zfptr,"%s",tmpstr);
free(tmpstr);
} else
#endif
{
retval=vfprintf(stream->nzfptr,format,va);
}
va_end(va);
return retval;
}
#endif
|