annotate src/zlib-1.2.8/gzread.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5b4145a0d408
children
rev   line source
cannam@128 1 /* gzread.c -- zlib functions for reading gzip files
cannam@128 2 * Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013 Mark Adler
cannam@128 3 * For conditions of distribution and use, see copyright notice in zlib.h
cannam@128 4 */
cannam@128 5
cannam@128 6 #include "gzguts.h"
cannam@128 7
cannam@128 8 /* Local functions */
cannam@128 9 local int gz_load OF((gz_statep, unsigned char *, unsigned, unsigned *));
cannam@128 10 local int gz_avail OF((gz_statep));
cannam@128 11 local int gz_look OF((gz_statep));
cannam@128 12 local int gz_decomp OF((gz_statep));
cannam@128 13 local int gz_fetch OF((gz_statep));
cannam@128 14 local int gz_skip OF((gz_statep, z_off64_t));
cannam@128 15
cannam@128 16 /* Use read() to load a buffer -- return -1 on error, otherwise 0. Read from
cannam@128 17 state->fd, and update state->eof, state->err, and state->msg as appropriate.
cannam@128 18 This function needs to loop on read(), since read() is not guaranteed to
cannam@128 19 read the number of bytes requested, depending on the type of descriptor. */
cannam@128 20 local int gz_load(state, buf, len, have)
cannam@128 21 gz_statep state;
cannam@128 22 unsigned char *buf;
cannam@128 23 unsigned len;
cannam@128 24 unsigned *have;
cannam@128 25 {
cannam@128 26 int ret;
cannam@128 27
cannam@128 28 *have = 0;
cannam@128 29 do {
cannam@128 30 ret = read(state->fd, buf + *have, len - *have);
cannam@128 31 if (ret <= 0)
cannam@128 32 break;
cannam@128 33 *have += ret;
cannam@128 34 } while (*have < len);
cannam@128 35 if (ret < 0) {
cannam@128 36 gz_error(state, Z_ERRNO, zstrerror());
cannam@128 37 return -1;
cannam@128 38 }
cannam@128 39 if (ret == 0)
cannam@128 40 state->eof = 1;
cannam@128 41 return 0;
cannam@128 42 }
cannam@128 43
cannam@128 44 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
cannam@128 45 error, 0 otherwise. Note that the eof flag is set when the end of the input
cannam@128 46 file is reached, even though there may be unused data in the buffer. Once
cannam@128 47 that data has been used, no more attempts will be made to read the file.
cannam@128 48 If strm->avail_in != 0, then the current data is moved to the beginning of
cannam@128 49 the input buffer, and then the remainder of the buffer is loaded with the
cannam@128 50 available data from the input file. */
cannam@128 51 local int gz_avail(state)
cannam@128 52 gz_statep state;
cannam@128 53 {
cannam@128 54 unsigned got;
cannam@128 55 z_streamp strm = &(state->strm);
cannam@128 56
cannam@128 57 if (state->err != Z_OK && state->err != Z_BUF_ERROR)
cannam@128 58 return -1;
cannam@128 59 if (state->eof == 0) {
cannam@128 60 if (strm->avail_in) { /* copy what's there to the start */
cannam@128 61 unsigned char *p = state->in;
cannam@128 62 unsigned const char *q = strm->next_in;
cannam@128 63 unsigned n = strm->avail_in;
cannam@128 64 do {
cannam@128 65 *p++ = *q++;
cannam@128 66 } while (--n);
cannam@128 67 }
cannam@128 68 if (gz_load(state, state->in + strm->avail_in,
cannam@128 69 state->size - strm->avail_in, &got) == -1)
cannam@128 70 return -1;
cannam@128 71 strm->avail_in += got;
cannam@128 72 strm->next_in = state->in;
cannam@128 73 }
cannam@128 74 return 0;
cannam@128 75 }
cannam@128 76
cannam@128 77 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
cannam@128 78 If this is the first time in, allocate required memory. state->how will be
cannam@128 79 left unchanged if there is no more input data available, will be set to COPY
cannam@128 80 if there is no gzip header and direct copying will be performed, or it will
cannam@128 81 be set to GZIP for decompression. If direct copying, then leftover input
cannam@128 82 data from the input buffer will be copied to the output buffer. In that
cannam@128 83 case, all further file reads will be directly to either the output buffer or
cannam@128 84 a user buffer. If decompressing, the inflate state will be initialized.
cannam@128 85 gz_look() will return 0 on success or -1 on failure. */
cannam@128 86 local int gz_look(state)
cannam@128 87 gz_statep state;
cannam@128 88 {
cannam@128 89 z_streamp strm = &(state->strm);
cannam@128 90
cannam@128 91 /* allocate read buffers and inflate memory */
cannam@128 92 if (state->size == 0) {
cannam@128 93 /* allocate buffers */
cannam@128 94 state->in = (unsigned char *)malloc(state->want);
cannam@128 95 state->out = (unsigned char *)malloc(state->want << 1);
cannam@128 96 if (state->in == NULL || state->out == NULL) {
cannam@128 97 if (state->out != NULL)
cannam@128 98 free(state->out);
cannam@128 99 if (state->in != NULL)
cannam@128 100 free(state->in);
cannam@128 101 gz_error(state, Z_MEM_ERROR, "out of memory");
cannam@128 102 return -1;
cannam@128 103 }
cannam@128 104 state->size = state->want;
cannam@128 105
cannam@128 106 /* allocate inflate memory */
cannam@128 107 state->strm.zalloc = Z_NULL;
cannam@128 108 state->strm.zfree = Z_NULL;
cannam@128 109 state->strm.opaque = Z_NULL;
cannam@128 110 state->strm.avail_in = 0;
cannam@128 111 state->strm.next_in = Z_NULL;
cannam@128 112 if (inflateInit2(&(state->strm), 15 + 16) != Z_OK) { /* gunzip */
cannam@128 113 free(state->out);
cannam@128 114 free(state->in);
cannam@128 115 state->size = 0;
cannam@128 116 gz_error(state, Z_MEM_ERROR, "out of memory");
cannam@128 117 return -1;
cannam@128 118 }
cannam@128 119 }
cannam@128 120
cannam@128 121 /* get at least the magic bytes in the input buffer */
cannam@128 122 if (strm->avail_in < 2) {
cannam@128 123 if (gz_avail(state) == -1)
cannam@128 124 return -1;
cannam@128 125 if (strm->avail_in == 0)
cannam@128 126 return 0;
cannam@128 127 }
cannam@128 128
cannam@128 129 /* look for gzip magic bytes -- if there, do gzip decoding (note: there is
cannam@128 130 a logical dilemma here when considering the case of a partially written
cannam@128 131 gzip file, to wit, if a single 31 byte is written, then we cannot tell
cannam@128 132 whether this is a single-byte file, or just a partially written gzip
cannam@128 133 file -- for here we assume that if a gzip file is being written, then
cannam@128 134 the header will be written in a single operation, so that reading a
cannam@128 135 single byte is sufficient indication that it is not a gzip file) */
cannam@128 136 if (strm->avail_in > 1 &&
cannam@128 137 strm->next_in[0] == 31 && strm->next_in[1] == 139) {
cannam@128 138 inflateReset(strm);
cannam@128 139 state->how = GZIP;
cannam@128 140 state->direct = 0;
cannam@128 141 return 0;
cannam@128 142 }
cannam@128 143
cannam@128 144 /* no gzip header -- if we were decoding gzip before, then this is trailing
cannam@128 145 garbage. Ignore the trailing garbage and finish. */
cannam@128 146 if (state->direct == 0) {
cannam@128 147 strm->avail_in = 0;
cannam@128 148 state->eof = 1;
cannam@128 149 state->x.have = 0;
cannam@128 150 return 0;
cannam@128 151 }
cannam@128 152
cannam@128 153 /* doing raw i/o, copy any leftover input to output -- this assumes that
cannam@128 154 the output buffer is larger than the input buffer, which also assures
cannam@128 155 space for gzungetc() */
cannam@128 156 state->x.next = state->out;
cannam@128 157 if (strm->avail_in) {
cannam@128 158 memcpy(state->x.next, strm->next_in, strm->avail_in);
cannam@128 159 state->x.have = strm->avail_in;
cannam@128 160 strm->avail_in = 0;
cannam@128 161 }
cannam@128 162 state->how = COPY;
cannam@128 163 state->direct = 1;
cannam@128 164 return 0;
cannam@128 165 }
cannam@128 166
cannam@128 167 /* Decompress from input to the provided next_out and avail_out in the state.
cannam@128 168 On return, state->x.have and state->x.next point to the just decompressed
cannam@128 169 data. If the gzip stream completes, state->how is reset to LOOK to look for
cannam@128 170 the next gzip stream or raw data, once state->x.have is depleted. Returns 0
cannam@128 171 on success, -1 on failure. */
cannam@128 172 local int gz_decomp(state)
cannam@128 173 gz_statep state;
cannam@128 174 {
cannam@128 175 int ret = Z_OK;
cannam@128 176 unsigned had;
cannam@128 177 z_streamp strm = &(state->strm);
cannam@128 178
cannam@128 179 /* fill output buffer up to end of deflate stream */
cannam@128 180 had = strm->avail_out;
cannam@128 181 do {
cannam@128 182 /* get more input for inflate() */
cannam@128 183 if (strm->avail_in == 0 && gz_avail(state) == -1)
cannam@128 184 return -1;
cannam@128 185 if (strm->avail_in == 0) {
cannam@128 186 gz_error(state, Z_BUF_ERROR, "unexpected end of file");
cannam@128 187 break;
cannam@128 188 }
cannam@128 189
cannam@128 190 /* decompress and handle errors */
cannam@128 191 ret = inflate(strm, Z_NO_FLUSH);
cannam@128 192 if (ret == Z_STREAM_ERROR || ret == Z_NEED_DICT) {
cannam@128 193 gz_error(state, Z_STREAM_ERROR,
cannam@128 194 "internal error: inflate stream corrupt");
cannam@128 195 return -1;
cannam@128 196 }
cannam@128 197 if (ret == Z_MEM_ERROR) {
cannam@128 198 gz_error(state, Z_MEM_ERROR, "out of memory");
cannam@128 199 return -1;
cannam@128 200 }
cannam@128 201 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */
cannam@128 202 gz_error(state, Z_DATA_ERROR,
cannam@128 203 strm->msg == NULL ? "compressed data error" : strm->msg);
cannam@128 204 return -1;
cannam@128 205 }
cannam@128 206 } while (strm->avail_out && ret != Z_STREAM_END);
cannam@128 207
cannam@128 208 /* update available output */
cannam@128 209 state->x.have = had - strm->avail_out;
cannam@128 210 state->x.next = strm->next_out - state->x.have;
cannam@128 211
cannam@128 212 /* if the gzip stream completed successfully, look for another */
cannam@128 213 if (ret == Z_STREAM_END)
cannam@128 214 state->how = LOOK;
cannam@128 215
cannam@128 216 /* good decompression */
cannam@128 217 return 0;
cannam@128 218 }
cannam@128 219
cannam@128 220 /* Fetch data and put it in the output buffer. Assumes state->x.have is 0.
cannam@128 221 Data is either copied from the input file or decompressed from the input
cannam@128 222 file depending on state->how. If state->how is LOOK, then a gzip header is
cannam@128 223 looked for to determine whether to copy or decompress. Returns -1 on error,
cannam@128 224 otherwise 0. gz_fetch() will leave state->how as COPY or GZIP unless the
cannam@128 225 end of the input file has been reached and all data has been processed. */
cannam@128 226 local int gz_fetch(state)
cannam@128 227 gz_statep state;
cannam@128 228 {
cannam@128 229 z_streamp strm = &(state->strm);
cannam@128 230
cannam@128 231 do {
cannam@128 232 switch(state->how) {
cannam@128 233 case LOOK: /* -> LOOK, COPY (only if never GZIP), or GZIP */
cannam@128 234 if (gz_look(state) == -1)
cannam@128 235 return -1;
cannam@128 236 if (state->how == LOOK)
cannam@128 237 return 0;
cannam@128 238 break;
cannam@128 239 case COPY: /* -> COPY */
cannam@128 240 if (gz_load(state, state->out, state->size << 1, &(state->x.have))
cannam@128 241 == -1)
cannam@128 242 return -1;
cannam@128 243 state->x.next = state->out;
cannam@128 244 return 0;
cannam@128 245 case GZIP: /* -> GZIP or LOOK (if end of gzip stream) */
cannam@128 246 strm->avail_out = state->size << 1;
cannam@128 247 strm->next_out = state->out;
cannam@128 248 if (gz_decomp(state) == -1)
cannam@128 249 return -1;
cannam@128 250 }
cannam@128 251 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
cannam@128 252 return 0;
cannam@128 253 }
cannam@128 254
cannam@128 255 /* Skip len uncompressed bytes of output. Return -1 on error, 0 on success. */
cannam@128 256 local int gz_skip(state, len)
cannam@128 257 gz_statep state;
cannam@128 258 z_off64_t len;
cannam@128 259 {
cannam@128 260 unsigned n;
cannam@128 261
cannam@128 262 /* skip over len bytes or reach end-of-file, whichever comes first */
cannam@128 263 while (len)
cannam@128 264 /* skip over whatever is in output buffer */
cannam@128 265 if (state->x.have) {
cannam@128 266 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?
cannam@128 267 (unsigned)len : state->x.have;
cannam@128 268 state->x.have -= n;
cannam@128 269 state->x.next += n;
cannam@128 270 state->x.pos += n;
cannam@128 271 len -= n;
cannam@128 272 }
cannam@128 273
cannam@128 274 /* output buffer empty -- return if we're at the end of the input */
cannam@128 275 else if (state->eof && state->strm.avail_in == 0)
cannam@128 276 break;
cannam@128 277
cannam@128 278 /* need more data to skip -- load up output buffer */
cannam@128 279 else {
cannam@128 280 /* get more output, looking for header if required */
cannam@128 281 if (gz_fetch(state) == -1)
cannam@128 282 return -1;
cannam@128 283 }
cannam@128 284 return 0;
cannam@128 285 }
cannam@128 286
cannam@128 287 /* -- see zlib.h -- */
cannam@128 288 int ZEXPORT gzread(file, buf, len)
cannam@128 289 gzFile file;
cannam@128 290 voidp buf;
cannam@128 291 unsigned len;
cannam@128 292 {
cannam@128 293 unsigned got, n;
cannam@128 294 gz_statep state;
cannam@128 295 z_streamp strm;
cannam@128 296
cannam@128 297 /* get internal structure */
cannam@128 298 if (file == NULL)
cannam@128 299 return -1;
cannam@128 300 state = (gz_statep)file;
cannam@128 301 strm = &(state->strm);
cannam@128 302
cannam@128 303 /* check that we're reading and that there's no (serious) error */
cannam@128 304 if (state->mode != GZ_READ ||
cannam@128 305 (state->err != Z_OK && state->err != Z_BUF_ERROR))
cannam@128 306 return -1;
cannam@128 307
cannam@128 308 /* since an int is returned, make sure len fits in one, otherwise return
cannam@128 309 with an error (this avoids the flaw in the interface) */
cannam@128 310 if ((int)len < 0) {
cannam@128 311 gz_error(state, Z_DATA_ERROR, "requested length does not fit in int");
cannam@128 312 return -1;
cannam@128 313 }
cannam@128 314
cannam@128 315 /* if len is zero, avoid unnecessary operations */
cannam@128 316 if (len == 0)
cannam@128 317 return 0;
cannam@128 318
cannam@128 319 /* process a skip request */
cannam@128 320 if (state->seek) {
cannam@128 321 state->seek = 0;
cannam@128 322 if (gz_skip(state, state->skip) == -1)
cannam@128 323 return -1;
cannam@128 324 }
cannam@128 325
cannam@128 326 /* get len bytes to buf, or less than len if at the end */
cannam@128 327 got = 0;
cannam@128 328 do {
cannam@128 329 /* first just try copying data from the output buffer */
cannam@128 330 if (state->x.have) {
cannam@128 331 n = state->x.have > len ? len : state->x.have;
cannam@128 332 memcpy(buf, state->x.next, n);
cannam@128 333 state->x.next += n;
cannam@128 334 state->x.have -= n;
cannam@128 335 }
cannam@128 336
cannam@128 337 /* output buffer empty -- return if we're at the end of the input */
cannam@128 338 else if (state->eof && strm->avail_in == 0) {
cannam@128 339 state->past = 1; /* tried to read past end */
cannam@128 340 break;
cannam@128 341 }
cannam@128 342
cannam@128 343 /* need output data -- for small len or new stream load up our output
cannam@128 344 buffer */
cannam@128 345 else if (state->how == LOOK || len < (state->size << 1)) {
cannam@128 346 /* get more output, looking for header if required */
cannam@128 347 if (gz_fetch(state) == -1)
cannam@128 348 return -1;
cannam@128 349 continue; /* no progress yet -- go back to copy above */
cannam@128 350 /* the copy above assures that we will leave with space in the
cannam@128 351 output buffer, allowing at least one gzungetc() to succeed */
cannam@128 352 }
cannam@128 353
cannam@128 354 /* large len -- read directly into user buffer */
cannam@128 355 else if (state->how == COPY) { /* read directly */
cannam@128 356 if (gz_load(state, (unsigned char *)buf, len, &n) == -1)
cannam@128 357 return -1;
cannam@128 358 }
cannam@128 359
cannam@128 360 /* large len -- decompress directly into user buffer */
cannam@128 361 else { /* state->how == GZIP */
cannam@128 362 strm->avail_out = len;
cannam@128 363 strm->next_out = (unsigned char *)buf;
cannam@128 364 if (gz_decomp(state) == -1)
cannam@128 365 return -1;
cannam@128 366 n = state->x.have;
cannam@128 367 state->x.have = 0;
cannam@128 368 }
cannam@128 369
cannam@128 370 /* update progress */
cannam@128 371 len -= n;
cannam@128 372 buf = (char *)buf + n;
cannam@128 373 got += n;
cannam@128 374 state->x.pos += n;
cannam@128 375 } while (len);
cannam@128 376
cannam@128 377 /* return number of bytes read into user buffer (will fit in int) */
cannam@128 378 return (int)got;
cannam@128 379 }
cannam@128 380
cannam@128 381 /* -- see zlib.h -- */
cannam@128 382 #ifdef Z_PREFIX_SET
cannam@128 383 # undef z_gzgetc
cannam@128 384 #else
cannam@128 385 # undef gzgetc
cannam@128 386 #endif
cannam@128 387 int ZEXPORT gzgetc(file)
cannam@128 388 gzFile file;
cannam@128 389 {
cannam@128 390 int ret;
cannam@128 391 unsigned char buf[1];
cannam@128 392 gz_statep state;
cannam@128 393
cannam@128 394 /* get internal structure */
cannam@128 395 if (file == NULL)
cannam@128 396 return -1;
cannam@128 397 state = (gz_statep)file;
cannam@128 398
cannam@128 399 /* check that we're reading and that there's no (serious) error */
cannam@128 400 if (state->mode != GZ_READ ||
cannam@128 401 (state->err != Z_OK && state->err != Z_BUF_ERROR))
cannam@128 402 return -1;
cannam@128 403
cannam@128 404 /* try output buffer (no need to check for skip request) */
cannam@128 405 if (state->x.have) {
cannam@128 406 state->x.have--;
cannam@128 407 state->x.pos++;
cannam@128 408 return *(state->x.next)++;
cannam@128 409 }
cannam@128 410
cannam@128 411 /* nothing there -- try gzread() */
cannam@128 412 ret = gzread(file, buf, 1);
cannam@128 413 return ret < 1 ? -1 : buf[0];
cannam@128 414 }
cannam@128 415
cannam@128 416 int ZEXPORT gzgetc_(file)
cannam@128 417 gzFile file;
cannam@128 418 {
cannam@128 419 return gzgetc(file);
cannam@128 420 }
cannam@128 421
cannam@128 422 /* -- see zlib.h -- */
cannam@128 423 int ZEXPORT gzungetc(c, file)
cannam@128 424 int c;
cannam@128 425 gzFile file;
cannam@128 426 {
cannam@128 427 gz_statep state;
cannam@128 428
cannam@128 429 /* get internal structure */
cannam@128 430 if (file == NULL)
cannam@128 431 return -1;
cannam@128 432 state = (gz_statep)file;
cannam@128 433
cannam@128 434 /* check that we're reading and that there's no (serious) error */
cannam@128 435 if (state->mode != GZ_READ ||
cannam@128 436 (state->err != Z_OK && state->err != Z_BUF_ERROR))
cannam@128 437 return -1;
cannam@128 438
cannam@128 439 /* process a skip request */
cannam@128 440 if (state->seek) {
cannam@128 441 state->seek = 0;
cannam@128 442 if (gz_skip(state, state->skip) == -1)
cannam@128 443 return -1;
cannam@128 444 }
cannam@128 445
cannam@128 446 /* can't push EOF */
cannam@128 447 if (c < 0)
cannam@128 448 return -1;
cannam@128 449
cannam@128 450 /* if output buffer empty, put byte at end (allows more pushing) */
cannam@128 451 if (state->x.have == 0) {
cannam@128 452 state->x.have = 1;
cannam@128 453 state->x.next = state->out + (state->size << 1) - 1;
cannam@128 454 state->x.next[0] = c;
cannam@128 455 state->x.pos--;
cannam@128 456 state->past = 0;
cannam@128 457 return c;
cannam@128 458 }
cannam@128 459
cannam@128 460 /* if no room, give up (must have already done a gzungetc()) */
cannam@128 461 if (state->x.have == (state->size << 1)) {
cannam@128 462 gz_error(state, Z_DATA_ERROR, "out of room to push characters");
cannam@128 463 return -1;
cannam@128 464 }
cannam@128 465
cannam@128 466 /* slide output data if needed and insert byte before existing data */
cannam@128 467 if (state->x.next == state->out) {
cannam@128 468 unsigned char *src = state->out + state->x.have;
cannam@128 469 unsigned char *dest = state->out + (state->size << 1);
cannam@128 470 while (src > state->out)
cannam@128 471 *--dest = *--src;
cannam@128 472 state->x.next = dest;
cannam@128 473 }
cannam@128 474 state->x.have++;
cannam@128 475 state->x.next--;
cannam@128 476 state->x.next[0] = c;
cannam@128 477 state->x.pos--;
cannam@128 478 state->past = 0;
cannam@128 479 return c;
cannam@128 480 }
cannam@128 481
cannam@128 482 /* -- see zlib.h -- */
cannam@128 483 char * ZEXPORT gzgets(file, buf, len)
cannam@128 484 gzFile file;
cannam@128 485 char *buf;
cannam@128 486 int len;
cannam@128 487 {
cannam@128 488 unsigned left, n;
cannam@128 489 char *str;
cannam@128 490 unsigned char *eol;
cannam@128 491 gz_statep state;
cannam@128 492
cannam@128 493 /* check parameters and get internal structure */
cannam@128 494 if (file == NULL || buf == NULL || len < 1)
cannam@128 495 return NULL;
cannam@128 496 state = (gz_statep)file;
cannam@128 497
cannam@128 498 /* check that we're reading and that there's no (serious) error */
cannam@128 499 if (state->mode != GZ_READ ||
cannam@128 500 (state->err != Z_OK && state->err != Z_BUF_ERROR))
cannam@128 501 return NULL;
cannam@128 502
cannam@128 503 /* process a skip request */
cannam@128 504 if (state->seek) {
cannam@128 505 state->seek = 0;
cannam@128 506 if (gz_skip(state, state->skip) == -1)
cannam@128 507 return NULL;
cannam@128 508 }
cannam@128 509
cannam@128 510 /* copy output bytes up to new line or len - 1, whichever comes first --
cannam@128 511 append a terminating zero to the string (we don't check for a zero in
cannam@128 512 the contents, let the user worry about that) */
cannam@128 513 str = buf;
cannam@128 514 left = (unsigned)len - 1;
cannam@128 515 if (left) do {
cannam@128 516 /* assure that something is in the output buffer */
cannam@128 517 if (state->x.have == 0 && gz_fetch(state) == -1)
cannam@128 518 return NULL; /* error */
cannam@128 519 if (state->x.have == 0) { /* end of file */
cannam@128 520 state->past = 1; /* read past end */
cannam@128 521 break; /* return what we have */
cannam@128 522 }
cannam@128 523
cannam@128 524 /* look for end-of-line in current output buffer */
cannam@128 525 n = state->x.have > left ? left : state->x.have;
cannam@128 526 eol = (unsigned char *)memchr(state->x.next, '\n', n);
cannam@128 527 if (eol != NULL)
cannam@128 528 n = (unsigned)(eol - state->x.next) + 1;
cannam@128 529
cannam@128 530 /* copy through end-of-line, or remainder if not found */
cannam@128 531 memcpy(buf, state->x.next, n);
cannam@128 532 state->x.have -= n;
cannam@128 533 state->x.next += n;
cannam@128 534 state->x.pos += n;
cannam@128 535 left -= n;
cannam@128 536 buf += n;
cannam@128 537 } while (left && eol == NULL);
cannam@128 538
cannam@128 539 /* return terminated string, or if nothing, end of file */
cannam@128 540 if (buf == str)
cannam@128 541 return NULL;
cannam@128 542 buf[0] = 0;
cannam@128 543 return str;
cannam@128 544 }
cannam@128 545
cannam@128 546 /* -- see zlib.h -- */
cannam@128 547 int ZEXPORT gzdirect(file)
cannam@128 548 gzFile file;
cannam@128 549 {
cannam@128 550 gz_statep state;
cannam@128 551
cannam@128 552 /* get internal structure */
cannam@128 553 if (file == NULL)
cannam@128 554 return 0;
cannam@128 555 state = (gz_statep)file;
cannam@128 556
cannam@128 557 /* if the state is not known, but we can find out, then do so (this is
cannam@128 558 mainly for right after a gzopen() or gzdopen()) */
cannam@128 559 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0)
cannam@128 560 (void)gz_look(state);
cannam@128 561
cannam@128 562 /* return 1 if transparent, 0 if processing a gzip stream */
cannam@128 563 return state->direct;
cannam@128 564 }
cannam@128 565
cannam@128 566 /* -- see zlib.h -- */
cannam@128 567 int ZEXPORT gzclose_r(file)
cannam@128 568 gzFile file;
cannam@128 569 {
cannam@128 570 int ret, err;
cannam@128 571 gz_statep state;
cannam@128 572
cannam@128 573 /* get internal structure */
cannam@128 574 if (file == NULL)
cannam@128 575 return Z_STREAM_ERROR;
cannam@128 576 state = (gz_statep)file;
cannam@128 577
cannam@128 578 /* check that we're reading */
cannam@128 579 if (state->mode != GZ_READ)
cannam@128 580 return Z_STREAM_ERROR;
cannam@128 581
cannam@128 582 /* free memory and close file */
cannam@128 583 if (state->size) {
cannam@128 584 inflateEnd(&(state->strm));
cannam@128 585 free(state->out);
cannam@128 586 free(state->in);
cannam@128 587 }
cannam@128 588 err = state->err == Z_BUF_ERROR ? Z_BUF_ERROR : Z_OK;
cannam@128 589 gz_error(state, Z_OK, NULL);
cannam@128 590 free(state->path);
cannam@128 591 ret = close(state->fd);
cannam@128 592 free(state);
cannam@128 593 return ret ? Z_ERRNO : err;
cannam@128 594 }