1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/compressionlibs/ziplib/src/zlib/libzgzio.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,208 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// GZIO.H
1.18 +//
1.19 +//
1.20 +
1.21 +// This header guard define is used subsequently in zutil.h to allow standard libarary functions
1.22 +// (in stdlib.h and string.h) to be included for libz.dll and excluded for libzcore.dll.
1.23 +#ifndef LIBZGZIO_H
1.24 +#define LIBZGZIO_H
1.25 +
1.26 +#if (defined(__TOOLS2__) || defined(__TOOLS__))
1.27 + #include "zconf.h"
1.28 +#else
1.29 + #include <zconf.h>
1.30 +#endif
1.31 +
1.32 +#include <stdarg.h>
1.33 +
1.34 +
1.35 +#ifdef SYMBIAN_EZLIB_DEVICE
1.36 + #include <e32def.h>
1.37 +#endif
1.38 +
1.39 +#ifdef __cplusplus
1.40 + extern "C" {
1.41 +#endif
1.42 +
1.43 +typedef voidp gzFile;
1.44 +
1.45 +/*
1.46 + * Flushes all pending output if necessary, closes the compressed file
1.47 + * and deallocates all the (de)compression state.
1.48 + */
1.49 +int gzclose_r (gzFile file);
1.50 +
1.51 +
1.52 +/*
1.53 + * Clears the error and end-of-file flags for file.This is analogous to the
1.54 + * clearerr() function in stdio.
1.55 + */
1.56 +void gzclearerr_r (gzFile file);
1.57 +
1.58 +
1.59 +/*
1.60 + * gzdopen() associates a gzFile with the file descriptor fd. File
1.61 + * descriptors are obtained from calls like open, dup, creat, pipe or
1.62 + * fileno (in the file has been previously opened with fopen).
1.63 + * The mode parameter is as in gzopen.
1.64 + */
1.65 +gzFile gzdopen_r (int fd, const char *mode);
1.66 +
1.67 +
1.68 +/*
1.69 + * Returns 1 if file is being read directly without decompression, otherwise
1.70 + * zero.
1.71 + */
1.72 +int gzdirect_r (gzFile file);
1.73 +
1.74 +
1.75 +/*
1.76 + * Returns 1 when EOF has previously been detected reading the given
1.77 + * input stream, otherwise zero.
1.78 + */
1.79 +int gzeof_r (gzFile file);
1.80 +
1.81 +
1.82 +/*
1.83 + * Returns the error message for the last error which occurred on the
1.84 + * given compressed file. errnum is set to zlib error number. If an
1.85 + * error occurred in the file system and not in the compression library,
1.86 + * errnum is set to Z_ERRNO and the application may consult errno
1.87 + * to get the exact error code.
1.88 + */
1.89 +const char* gzerror_r (gzFile file, int *errnum);
1.90 +
1.91 +
1.92 +/*
1.93 + * Flushes all pending output into the compressed file.gzflush should
1.94 + * be called only when strictly necessary because it can degrade compression.
1.95 + */
1.96 +int gzflush_r (gzFile file, int flush);
1.97 +
1.98 +
1.99 +/*
1.100 + * Reads one byte from the compressed file. gzgetc returns this byte
1.101 + * or -1 in case of end of file or error.
1.102 + */
1.103 +int gzgetc_r (gzFile file);
1.104 +
1.105 +
1.106 +/*
1.107 + * Reads bytes from the compressed file until len-1 characters are read, or
1.108 + * a newline character is read and transferred to buf, or an end-of-file
1.109 + * condition is encountered. The string is then terminated with a null
1.110 + * character.
1.111 + */
1.112 +char* gzgets_r (gzFile file, char *buf, int len);
1.113 +
1.114 +/*
1.115 + * Opens a gzip (.gz) file for reading or writing. The mode parameter
1.116 + * is as in fopen ("rb" or "wb") but can also include a compression level
1.117 + * ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for
1.118 + * Huffman only compression as in "wb1h", or 'R' for run-length encoding
1.119 + * as in "wb1R".
1.120 + */
1.121 +gzFile gzopen_r (const char *path, const char *mode);
1.122 +
1.123 +
1.124 +/*
1.125 + * Converts, formats, and writes the args to the compressed file under
1.126 + * control of the format string, as in fprintf. gzprintf returns the number of
1.127 + * uncompressed bytes actually written (0 in case of error).
1.128 + */
1.129 +int gzprintf_r (gzFile file, const char *format, va_list va);
1.130 +
1.131 +
1.132 +/*
1.133 + * Writes c, converted to an unsigned char, into the compressed file.
1.134 + * gzputc returns the value that was written, or -1 in case of error.
1.135 + */
1.136 +int gzputc_r (gzFile file, int c);
1.137 +
1.138 +
1.139 +/*
1.140 + * Writes the given null-terminated string to the compressed file, excluding
1.141 + * the terminating null character. gzputs returns the number of characters
1.142 + * written, or -1 in case of error.
1.143 + */
1.144 +int gzputs_r (gzFile file, const char *s);
1.145 +
1.146 +
1.147 +/*
1.148 + * Reads the given number of uncompressed bytes from the compressed file.
1.149 + * gzread returns the number of uncompressed bytes actually read (0 for
1.150 + * end of file, -1 for error).
1.151 + */
1.152 +int gzread_r (gzFile file, voidp buf, unsigned len);
1.153 +
1.154 +
1.155 +/*
1.156 + * Rewinds the given file. This function is supported only for reading.
1.157 + * gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET)
1.158 + */
1.159 +
1.160 +int gzrewind_r (gzFile file);
1.161 +
1.162 +
1.163 +/*
1.164 + * Sets the starting position for the next gzread or gzwrite on the
1.165 + * given compressed file. If the file is opened for writing, only
1.166 + * forward seeks are supported.
1.167 + */
1.168 +z_off_t gzseek_r (gzFile file, z_off_t offset, int whence);
1.169 +
1.170 +
1.171 +/*
1.172 + * Dynamically update the compression level or strategy. See the description
1.173 + * of deflateInit2 for the meaning of these parameters.
1.174 + */
1.175 +int gzsetparams_r (gzFile file, int level, int strategy);
1.176 +
1.177 +
1.178 +/*
1.179 + * Returns the starting position for the next gzread or gzwrite on the
1.180 + * given compressed file. This position represents a number of bytes in the
1.181 + * uncompressed data stream.
1.182 + */
1.183 +z_off_t gztell_r (gzFile file);
1.184 +
1.185 +
1.186 +/*
1.187 + * Push one character back onto the stream to be read again later.
1.188 + * Only one character of push-back is allowed.
1.189 + */
1.190 +int gzungetc_r (int c, gzFile file);
1.191 +
1.192 +
1.193 +/*
1.194 + * Writes the given number of uncompressed bytes into the compressed file.
1.195 + * gzwrite returns the number of uncompressed bytes actually written
1.196 + * (0 in case of error).
1.197 + */
1.198 +int gzwrite_r (gzFile file, voidpc buf, unsigned len);
1.199 +
1.200 +
1.201 +#ifdef __cplusplus
1.202 + }
1.203 +#endif
1.204 +
1.205 +#endif /* LIBZGZIO_H */
1.206 +
1.207 +
1.208 +
1.209 +
1.210 +
1.211 +