sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// GZIO.H
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
// This header guard define is used subsequently in zutil.h to allow standard libarary functions
|
sl@0
|
19 |
// (in stdlib.h and string.h) to be included for libz.dll and excluded for libzcore.dll.
|
sl@0
|
20 |
#ifndef LIBZGZIO_H
|
sl@0
|
21 |
#define LIBZGZIO_H
|
sl@0
|
22 |
|
sl@0
|
23 |
#if (defined(__TOOLS2__) || defined(__TOOLS__))
|
sl@0
|
24 |
#include "zconf.h"
|
sl@0
|
25 |
#else
|
sl@0
|
26 |
#include <zconf.h>
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <stdarg.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
#ifdef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
33 |
#include <e32def.h>
|
sl@0
|
34 |
#endif
|
sl@0
|
35 |
|
sl@0
|
36 |
#ifdef __cplusplus
|
sl@0
|
37 |
extern "C" {
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
typedef voidp gzFile;
|
sl@0
|
41 |
|
sl@0
|
42 |
/*
|
sl@0
|
43 |
* Flushes all pending output if necessary, closes the compressed file
|
sl@0
|
44 |
* and deallocates all the (de)compression state.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
int gzclose_r (gzFile file);
|
sl@0
|
47 |
|
sl@0
|
48 |
|
sl@0
|
49 |
/*
|
sl@0
|
50 |
* Clears the error and end-of-file flags for file.This is analogous to the
|
sl@0
|
51 |
* clearerr() function in stdio.
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
void gzclearerr_r (gzFile file);
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
/*
|
sl@0
|
57 |
* gzdopen() associates a gzFile with the file descriptor fd. File
|
sl@0
|
58 |
* descriptors are obtained from calls like open, dup, creat, pipe or
|
sl@0
|
59 |
* fileno (in the file has been previously opened with fopen).
|
sl@0
|
60 |
* The mode parameter is as in gzopen.
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
gzFile gzdopen_r (int fd, const char *mode);
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
/*
|
sl@0
|
66 |
* Returns 1 if file is being read directly without decompression, otherwise
|
sl@0
|
67 |
* zero.
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
int gzdirect_r (gzFile file);
|
sl@0
|
70 |
|
sl@0
|
71 |
|
sl@0
|
72 |
/*
|
sl@0
|
73 |
* Returns 1 when EOF has previously been detected reading the given
|
sl@0
|
74 |
* input stream, otherwise zero.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
int gzeof_r (gzFile file);
|
sl@0
|
77 |
|
sl@0
|
78 |
|
sl@0
|
79 |
/*
|
sl@0
|
80 |
* Returns the error message for the last error which occurred on the
|
sl@0
|
81 |
* given compressed file. errnum is set to zlib error number. If an
|
sl@0
|
82 |
* error occurred in the file system and not in the compression library,
|
sl@0
|
83 |
* errnum is set to Z_ERRNO and the application may consult errno
|
sl@0
|
84 |
* to get the exact error code.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
const char* gzerror_r (gzFile file, int *errnum);
|
sl@0
|
87 |
|
sl@0
|
88 |
|
sl@0
|
89 |
/*
|
sl@0
|
90 |
* Flushes all pending output into the compressed file.gzflush should
|
sl@0
|
91 |
* be called only when strictly necessary because it can degrade compression.
|
sl@0
|
92 |
*/
|
sl@0
|
93 |
int gzflush_r (gzFile file, int flush);
|
sl@0
|
94 |
|
sl@0
|
95 |
|
sl@0
|
96 |
/*
|
sl@0
|
97 |
* Reads one byte from the compressed file. gzgetc returns this byte
|
sl@0
|
98 |
* or -1 in case of end of file or error.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
int gzgetc_r (gzFile file);
|
sl@0
|
101 |
|
sl@0
|
102 |
|
sl@0
|
103 |
/*
|
sl@0
|
104 |
* Reads bytes from the compressed file until len-1 characters are read, or
|
sl@0
|
105 |
* a newline character is read and transferred to buf, or an end-of-file
|
sl@0
|
106 |
* condition is encountered. The string is then terminated with a null
|
sl@0
|
107 |
* character.
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
char* gzgets_r (gzFile file, char *buf, int len);
|
sl@0
|
110 |
|
sl@0
|
111 |
/*
|
sl@0
|
112 |
* Opens a gzip (.gz) file for reading or writing. The mode parameter
|
sl@0
|
113 |
* is as in fopen ("rb" or "wb") but can also include a compression level
|
sl@0
|
114 |
* ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for
|
sl@0
|
115 |
* Huffman only compression as in "wb1h", or 'R' for run-length encoding
|
sl@0
|
116 |
* as in "wb1R".
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
gzFile gzopen_r (const char *path, const char *mode);
|
sl@0
|
119 |
|
sl@0
|
120 |
|
sl@0
|
121 |
/*
|
sl@0
|
122 |
* Converts, formats, and writes the args to the compressed file under
|
sl@0
|
123 |
* control of the format string, as in fprintf. gzprintf returns the number of
|
sl@0
|
124 |
* uncompressed bytes actually written (0 in case of error).
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
int gzprintf_r (gzFile file, const char *format, va_list va);
|
sl@0
|
127 |
|
sl@0
|
128 |
|
sl@0
|
129 |
/*
|
sl@0
|
130 |
* Writes c, converted to an unsigned char, into the compressed file.
|
sl@0
|
131 |
* gzputc returns the value that was written, or -1 in case of error.
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
int gzputc_r (gzFile file, int c);
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
/*
|
sl@0
|
137 |
* Writes the given null-terminated string to the compressed file, excluding
|
sl@0
|
138 |
* the terminating null character. gzputs returns the number of characters
|
sl@0
|
139 |
* written, or -1 in case of error.
|
sl@0
|
140 |
*/
|
sl@0
|
141 |
int gzputs_r (gzFile file, const char *s);
|
sl@0
|
142 |
|
sl@0
|
143 |
|
sl@0
|
144 |
/*
|
sl@0
|
145 |
* Reads the given number of uncompressed bytes from the compressed file.
|
sl@0
|
146 |
* gzread returns the number of uncompressed bytes actually read (0 for
|
sl@0
|
147 |
* end of file, -1 for error).
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
int gzread_r (gzFile file, voidp buf, unsigned len);
|
sl@0
|
150 |
|
sl@0
|
151 |
|
sl@0
|
152 |
/*
|
sl@0
|
153 |
* Rewinds the given file. This function is supported only for reading.
|
sl@0
|
154 |
* gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET)
|
sl@0
|
155 |
*/
|
sl@0
|
156 |
|
sl@0
|
157 |
int gzrewind_r (gzFile file);
|
sl@0
|
158 |
|
sl@0
|
159 |
|
sl@0
|
160 |
/*
|
sl@0
|
161 |
* Sets the starting position for the next gzread or gzwrite on the
|
sl@0
|
162 |
* given compressed file. If the file is opened for writing, only
|
sl@0
|
163 |
* forward seeks are supported.
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
z_off_t gzseek_r (gzFile file, z_off_t offset, int whence);
|
sl@0
|
166 |
|
sl@0
|
167 |
|
sl@0
|
168 |
/*
|
sl@0
|
169 |
* Dynamically update the compression level or strategy. See the description
|
sl@0
|
170 |
* of deflateInit2 for the meaning of these parameters.
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
int gzsetparams_r (gzFile file, int level, int strategy);
|
sl@0
|
173 |
|
sl@0
|
174 |
|
sl@0
|
175 |
/*
|
sl@0
|
176 |
* Returns the starting position for the next gzread or gzwrite on the
|
sl@0
|
177 |
* given compressed file. This position represents a number of bytes in the
|
sl@0
|
178 |
* uncompressed data stream.
|
sl@0
|
179 |
*/
|
sl@0
|
180 |
z_off_t gztell_r (gzFile file);
|
sl@0
|
181 |
|
sl@0
|
182 |
|
sl@0
|
183 |
/*
|
sl@0
|
184 |
* Push one character back onto the stream to be read again later.
|
sl@0
|
185 |
* Only one character of push-back is allowed.
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
int gzungetc_r (int c, gzFile file);
|
sl@0
|
188 |
|
sl@0
|
189 |
|
sl@0
|
190 |
/*
|
sl@0
|
191 |
* Writes the given number of uncompressed bytes into the compressed file.
|
sl@0
|
192 |
* gzwrite returns the number of uncompressed bytes actually written
|
sl@0
|
193 |
* (0 in case of error).
|
sl@0
|
194 |
*/
|
sl@0
|
195 |
int gzwrite_r (gzFile file, voidpc buf, unsigned len);
|
sl@0
|
196 |
|
sl@0
|
197 |
|
sl@0
|
198 |
#ifdef __cplusplus
|
sl@0
|
199 |
}
|
sl@0
|
200 |
#endif
|
sl@0
|
201 |
|
sl@0
|
202 |
#endif /* LIBZGZIO_H */
|
sl@0
|
203 |
|
sl@0
|
204 |
|
sl@0
|
205 |
|
sl@0
|
206 |
|
sl@0
|
207 |
|
sl@0
|
208 |
|