os/ossrv/compressionlibs/ziplib/src/zlib/libzcore.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // LIBZCORE.H 
     2 //
     3 // Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
     4 // All rights reserved.
     5 //
     6 // Portions Copyright (c) 2007 1995-2005 Jean-loup Gailly and Mark Adler.
     7 //
     8 
     9 #ifndef LIBZCORE_H
    10 #define LIBZCORE_H
    11 
    12 
    13 #if (defined(__TOOLS2__) ||defined(__TOOLS__))
    14 	// A tools build picks up the zconf.h file from the user include path
    15 	#include "zlib.h"
    16 #else	
    17 	#include <e32def.h>
    18 	// Any other build picks up zconf.h from stdapis system include directory
    19 	#include <zlib.h>
    20 #endif
    21 
    22 
    23 
    24 #ifdef __cplusplus
    25 extern "C" {
    26 #endif
    27 
    28 
    29 //=========================================================================
    30 // The application can compare zlibVersion and ZLIB_VERSION for consistency.
    31 //=========================================================================
    32 ZEXTERN const char * ZEXPORT zlibVersion_r OF((void));
    33 
    34 
    35 
    36 //=========================================================================
    37 // This function shall compresses as much as possible.
    38 //=========================================================================
    39 ZEXTERN int ZEXPORT deflate_r OF((z_streamp strm, int flush));
    40 
    41 
    42 
    43 //=========================================================================
    44 // This function shall deallocate all the dynamically allocated data 
    45 // structures.
    46 //=========================================================================
    47 ZEXTERN int ZEXPORT deflateEnd_r OF((z_streamp strm));
    48 
    49 
    50 
    51 //=========================================================================
    52 // This function shall decompresses as much as possible.
    53 //=========================================================================
    54 ZEXTERN int ZEXPORT inflate_r OF((z_streamp strm, int flush));
    55 
    56 
    57 
    58 //=========================================================================
    59 // This function shall deallocate all the dynamically allocated data 
    60 // structures.
    61 //=========================================================================
    62 ZEXTERN int ZEXPORT inflateEnd_r OF((z_streamp strm));
    63 
    64 
    65 
    66 
    67 
    68 //=========================================================================
    69 // This function shall Initializes the compression dictionary from the given 
    70 // byte sequence without producing any compressed output.
    71 //=========================================================================
    72 ZEXTERN int ZEXPORT deflateSetDictionary_r OF((z_streamp strm,
    73                                              const Bytef *dictionary,
    74                                              uInt  dictLength));
    75 
    76 
    77 //=========================================================================
    78 // This function shall sets the destination stream as a complete copy of 
    79 // the source stream
    80 //=========================================================================
    81 ZEXTERN int ZEXPORT deflateCopy_r OF((z_streamp dest,
    82                                     z_streamp source));
    83 
    84 
    85 //=========================================================================
    86 // This function does not free and reallocate all the internal compression
    87 // state.
    88 //=========================================================================
    89 ZEXTERN int ZEXPORT deflateReset_r OF((z_streamp strm));
    90 
    91 
    92 
    93 //=========================================================================
    94 // This function shall update the compression level and compression strategy.
    95 //=========================================================================
    96 ZEXTERN int ZEXPORT deflateParams_r OF((z_streamp strm,
    97                                       int level,
    98                                       int strategy));
    99                                       
   100                                   
   101 //=========================================================================
   102 // This function shall fine tune deflate's internal compression parameters.
   103 //=========================================================================
   104 ZEXTERN int ZEXPORT deflateTune_r OF((z_streamp strm,
   105                                     int good_length,
   106                                     int max_lazy,
   107                                     int nice_length,
   108                                     int max_chain));    
   109 
   110 
   111 
   112 //=========================================================================
   113 // This function shall an upper bound on the compressed size after deflation
   114 // of sourceLen bytes.
   115 //=========================================================================
   116 ZEXTERN uLong ZEXPORT deflateBound_r OF((z_streamp strm,
   117                                        uLong sourceLen));
   118                                       
   119 
   120 //=========================================================================
   121 // This function shall insert bits in the deflate output stream.
   122 //=========================================================================
   123 ZEXTERN int ZEXPORT deflatePrime_r OF((z_streamp strm,
   124                                      int bits,
   125                                      int value));
   126 
   127 //=========================================================================
   128 // This function shall provides gzip header information for when a gzip
   129 // stream is requested by deflateInit2().
   130 //=========================================================================
   131 ZEXTERN int ZEXPORT deflateSetHeader_r OF((z_streamp strm,
   132                                          gz_headerp head));
   133                                                                              
   134                                      
   135 
   136                                      
   137 //=========================================================================
   138 // This function initializes the decompression dictionary from the given 
   139 // uncompressed byte sequence.
   140 //=========================================================================
   141 ZEXTERN int ZEXPORT inflateSetDictionary_r OF((z_streamp strm,
   142                                              const Bytef *dictionary,
   143                                              uInt  dictLength));
   144                                              
   145 
   146 //=========================================================================
   147 // This function shall skips invalid coompressed data until a full flush 
   148 // point can be found, or unil all the available input is skipped.
   149 //=========================================================================
   150 ZEXTERN int ZEXPORT inflateSync_r OF((z_streamp strm));
   151 
   152 
   153 //=========================================================================
   154 // This function shall set the destination stream as a complete copy of 
   155 // the source stream.
   156 //=========================================================================
   157 ZEXTERN int ZEXPORT inflateCopy_r OF((z_streamp dest,
   158                                     z_streamp source));
   159 
   160 
   161 
   162 //=========================================================================
   163 // This function shall not free and reallocate all the internal decompression
   164 // state.
   165 //=========================================================================
   166 ZEXTERN int ZEXPORT inflateReset_r OF((z_streamp strm));
   167 
   168 
   169 //=========================================================================
   170 // This function inserts bits in the inflate input stream.
   171 //=========================================================================
   172 ZEXTERN int ZEXPORT inflatePrime_r OF((z_streamp strm,
   173                                      int bits,
   174                                      int value));
   175 
   176 //=========================================================================
   177 // This function requests that gzip header information be stored in the
   178 // provided gz_header structure.
   179 //=========================================================================
   180 ZEXTERN int ZEXPORT inflateGetHeader_r OF((z_streamp strm,
   181                                          gz_headerp head));
   182 
   183 //=========================================================================
   184 // This function does a raw inflate with a single call using a call-back
   185 // interface for input and output.
   186 //=========================================================================                                         
   187 ZEXTERN int ZEXPORT inflateBack_r OF((z_streamp strm,
   188                                     in_func in, void FAR *in_desc,
   189                                     out_func out, void FAR *out_desc));
   190                                     
   191 //=========================================================================
   192 // This function frees all memory allocated by inflateBackInit().
   193 //=========================================================================
   194 ZEXTERN int ZEXPORT inflateBackEnd_r OF((z_streamp strm));
   195 
   196 
   197 //=========================================================================
   198 // This function returns flags indicating compile-time options.
   199 //=========================================================================
   200 ZEXTERN uLong ZEXPORT zlibCompileFlags_r OF((void));
   201 
   202 
   203 
   204 
   205 //=========================================================================
   206 // This function compressed the source buffer into the destination buffer.
   207 //=========================================================================
   208 ZEXTERN int ZEXPORT compress_r OF((Bytef *dest,   uLongf *destLen,
   209                                  const Bytef *source, uLong sourceLen));
   210                                  
   211 
   212 
   213 //=========================================================================
   214 // This function compresses the source buffer into the destination buffer.
   215 //=========================================================================
   216 ZEXTERN int ZEXPORT compress2_r OF((Bytef *dest,   uLongf *destLen,
   217                                   const Bytef *source, uLong sourceLen, int level));
   218 
   219 
   220 //=========================================================================
   221 // This function returns an upper bound on the compressed size after the 
   222 // compress or compress2 on the sourceLen bytes.
   223 //=========================================================================
   224 ZEXTERN uLong ZEXPORT compressBound_r OF((uLong sourceLen));
   225 
   226 
   227 //=========================================================================
   228 // This function decompresses the source buffer into the destination buffer.
   229 //=========================================================================
   230 ZEXTERN int ZEXPORT uncompress_r OF((Bytef *dest,   uLongf *destLen,
   231                                    const Bytef *source, uLong sourceLen));
   232 
   233 
   234 //=========================================================================
   235 // Update a running Adler-32 checksum with the bytes buf[0..len-1] and 
   236 // return the updated checksum.
   237 //=========================================================================
   238 ZEXTERN uLong ZEXPORT adler32_r OF((uLong adler, const Bytef *buf, uInt len));
   239 
   240 //=========================================================================
   241 // This function combines two Adler-32 checksums into one.
   242 //=========================================================================
   243 ZEXTERN uLong ZEXPORT adler32_combine_r OF((uLong adler1, uLong adler2,
   244                                           z_off_t len2));
   245                                                                                 
   246 
   247 //=========================================================================
   248 // Update a running CRC-32 checksum with the bytes buf[0..len-1] and 
   249 // return the updated CRC-32.
   250 //=========================================================================
   251 ZEXTERN uLong ZEXPORT crc32_r OF((uLong crc, const Bytef *buf, uInt len));
   252 
   253 
   254 //=========================================================================
   255 // This function combines two CRC-32 check values into one.
   256 //=========================================================================
   257 ZEXTERN uLong ZEXPORT crc32_combine_r OF((uLong crc1, uLong crc2, 
   258 										z_off_t len2));
   259 										
   260 
   261 
   262 /* deflateInit and inflateInit are macros to allow checking the zlib version
   263  * and the compiler's view of z_stream:
   264  */
   265 ZEXTERN int ZEXPORT deflateInit__r OF((z_streamp strm, int level,
   266                                      const char *version, int stream_size));
   267 ZEXTERN int ZEXPORT inflateInit__r OF((z_streamp strm,
   268                                      const char *version, int stream_size));
   269 ZEXTERN int ZEXPORT deflateInit2__r OF((z_streamp strm, int  level, int  method,
   270                                       int windowBits, int memLevel,
   271                                       int strategy, const char *version,
   272                                       int stream_size));
   273 ZEXTERN int ZEXPORT inflateInit2__r OF((z_streamp strm, int  windowBits,
   274                                       const char *version, int stream_size));                                     
   275 ZEXTERN int ZEXPORT inflateBackInit__r OF((z_streamp strm, int windowBits,
   276                                          unsigned char FAR *window,
   277                                          const char *version,
   278                                          int stream_size));
   279                                       
   280 
   281 #define deflateInit_r(strm, level) \
   282         deflateInit__r((strm), (level),       ZLIB_VERSION, sizeof(z_stream))
   283 #define inflateInit_r(strm) \
   284         inflateInit__r((strm),                ZLIB_VERSION, sizeof(z_stream))
   285 #define deflateInit2_r(strm, level, method, windowBits, memLevel, strategy) \
   286         deflateInit2__r((strm),(level),(method),(windowBits),(memLevel),\
   287                       (strategy),           ZLIB_VERSION, sizeof(z_stream))
   288 #define inflateInit2_r(strm, windowBits) \
   289         inflateInit2__r((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
   290         
   291 #define inflateBackInit_r(strm, windowBits, window) \
   292         inflateBackInit__r((strm), (windowBits), (window), \
   293         ZLIB_VERSION, sizeof(z_stream))        
   294 
   295 
   296 ZEXTERN const char   * ZEXPORT zError_r           OF((int));
   297 ZEXTERN int            ZEXPORT inflateSyncPoint_r OF((z_streamp z));
   298 ZEXTERN const uLongf * ZEXPORT get_crc_table_r    OF((void));
   299 
   300 
   301 #ifdef __cplusplus
   302 }
   303 #endif
   304 
   305 #endif /* LIBZCORE_H */