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 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/** @file
* IPRT - Compression.
*/
/*
* Copyright (C) 2006-2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
#ifndef ___iprt_zip_h
#define ___iprt_zip_h
#include <iprt/cdefs.h>
#include <iprt/types.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_zip RTZip - Compression
* @ingroup grp_rt
* @{
*/
/**
* Callback function for consuming compressed data during compression.
*
* @returns iprt status code.
* @param pvUser User argument.
* @param pvBuf Compressed data.
* @param cbBuf Size of the compressed data.
*/
typedef DECLCALLBACK(int) FNRTZIPOUT(void *pvUser, const void *pvBuf, size_t cbBuf);
/** Pointer to FNRTZIPOUT() function. */
typedef FNRTZIPOUT *PFNRTZIPOUT;
/**
* Callback function for supplying compressed data during decompression.
*
* @returns iprt status code.
* @param pvUser User argument.
* @param pvBuf Where to store the compressed data.
* @param cbBuf Size of the buffer.
* @param pcbBuf Number of bytes actually stored in the buffer.
*/
typedef DECLCALLBACK(int) FNRTZIPIN(void *pvUser, void *pvBuf, size_t cbBuf, size_t *pcbBuf);
/** Pointer to FNRTZIPIN() function. */
typedef FNRTZIPIN *PFNRTZIPIN;
/**
* Compression type.
* (Be careful with these they are stored in files!)
*/
typedef enum RTZIPTYPE
{
/** Invalid. */
RTZIPTYPE_INVALID = 0,
/** Choose best fitting one. */
RTZIPTYPE_AUTO,
/** Store the data. */
RTZIPTYPE_STORE,
/** Zlib compression the data. */
RTZIPTYPE_ZLIB,
/** BZlib compress. */
RTZIPTYPE_BZLIB,
/** libLZF compress. */
RTZIPTYPE_LZF,
/** Lempel-Ziv-Jeff-Bonwick compression. */
RTZIPTYPE_LZJB,
/** Lempel-Ziv-Oberhumer compression. */
RTZIPTYPE_LZO,
/* Zlib compression the data without zlib header. */
RTZIPTYPE_ZLIB_NO_HEADER,
/** End of valid the valid compression types. */
RTZIPTYPE_END
} RTZIPTYPE;
/**
* Compression level.
*/
typedef enum RTZIPLEVEL
{
/** Store, don't compress. */
RTZIPLEVEL_STORE = 0,
/** Fast compression. */
RTZIPLEVEL_FAST,
/** Default compression. */
RTZIPLEVEL_DEFAULT,
/** Maximal compression. */
RTZIPLEVEL_MAX
} RTZIPLEVEL;
/**
* Create a stream compressor instance.
*
* @returns iprt status code.
* @param ppZip Where to store the instance handle.
* @param pvUser User argument which will be passed on to pfnOut and pfnIn.
* @param pfnOut Callback for consuming output of compression.
* @param enmType Type of compressor to create.
* @param enmLevel Compression level.
*/
RTDECL(int) RTZipCompCreate(PRTZIPCOMP *ppZip, void *pvUser, PFNRTZIPOUT pfnOut, RTZIPTYPE enmType, RTZIPLEVEL enmLevel);
/**
* Compresses a chunk of memory.
*
* @returns iprt status code.
* @param pZip The compressor instance.
* @param pvBuf Pointer to buffer containing the bits to compress.
* @param cbBuf Number of bytes to compress.
*/
RTDECL(int) RTZipCompress(PRTZIPCOMP pZip, const void *pvBuf, size_t cbBuf);
/**
* Finishes the compression.
* This will flush all data and terminate the compression data stream.
*
* @returns iprt status code.
* @param pZip The stream compressor instance.
*/
RTDECL(int) RTZipCompFinish(PRTZIPCOMP pZip);
/**
* Destroys the stream compressor instance.
*
* @returns iprt status code.
* @param pZip The compressor instance.
*/
RTDECL(int) RTZipCompDestroy(PRTZIPCOMP pZip);
/**
* Create a stream decompressor instance.
*
* @returns iprt status code.
* @param ppZip Where to store the instance handle.
* @param pvUser User argument which will be passed on to pfnOut and pfnIn.
* @param pfnIn Callback for producing input for decompression.
*/
RTDECL(int) RTZipDecompCreate(PRTZIPDECOMP *ppZip, void *pvUser, PFNRTZIPIN pfnIn);
/**
* Decompresses a chunk of memory.
*
* @returns iprt status code.
* @param pZip The stream decompressor instance.
* @param pvBuf Where to store the decompressed data.
* @param cbBuf Number of bytes to produce. If pcbWritten is set
* any number of bytes up to cbBuf might be returned.
* @param pcbWritten Number of bytes actually written to the buffer. If NULL
* cbBuf number of bytes must be written.
*/
RTDECL(int) RTZipDecompress(PRTZIPDECOMP pZip, void *pvBuf, size_t cbBuf, size_t *pcbWritten);
/**
* Destroys the stream decompressor instance.
*
* @returns iprt status code.
* @param pZip The decompressor instance.
*/
RTDECL(int) RTZipDecompDestroy(PRTZIPDECOMP pZip);
/**
* Compress a chunk of memory into a block.
*
* @returns IPRT status code.
*
* @param enmType The compression type.
* @param enmLevel The compression level.
* @param fFlags Flags reserved for future extensions, MBZ.
* @param pvSrc Pointer to the input block.
* @param cbSrc Size of the input block.
* @param pvDst Pointer to the output buffer.
* @param cbDst The size of the output buffer.
* @param pcbDstActual Where to return the compressed size.
*/
RTDECL(int) RTZipBlockCompress(RTZIPTYPE enmType, RTZIPLEVEL enmLevel, uint32_t fFlags,
void const *pvSrc, size_t cbSrc,
void *pvDst, size_t cbDst, size_t *pcbDstActual) RT_NO_THROW;
/**
* Decompress a block.
*
* @returns IPRT status code.
*
* @param enmType The compression type.
* @param fFlags Flags reserved for future extensions, MBZ.
* @param pvSrc Pointer to the input block.
* @param cbSrc Size of the input block.
* @param pcbSrcActual Where to return the compressed size.
* @param pvDst Pointer to the output buffer.
* @param cbDst The size of the output buffer.
* @param pcbDstActual Where to return the decompressed size.
*/
RTDECL(int) RTZipBlockDecompress(RTZIPTYPE enmType, uint32_t fFlags,
void const *pvSrc, size_t cbSrc, size_t *pcbSrcActual,
void *pvDst, size_t cbDst, size_t *pcbDstActual) RT_NO_THROW;
/**
* Opens a zip decompression I/O stream.
*
* @returns IPRT status code.
*
* @param hVfsIosIn The compressed input stream (must be readable).
* The reference is not consumed, instead another
* one is retained.
* @param fFlags Flags, MBZ.
* @param phVfsIosUnzip Where to return the handle to the gunzipped I/O
* stream (read).
*/
RTDECL(int) RTZipDecompressIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSIOSTREAM phVfsIosUnzip);
/**
* Opens a gzip decompression I/O stream.
*
* @returns IPRT status code.
*
* @param hVfsIosIn The compressed input stream (must be readable).
* The reference is not consumed, instead another
* one is retained.
* @param fFlags Flags, MBZ.
* @param phVfsIosGunzip Where to return the handle to the gunzipped I/O
* stream (read).
*/
RTDECL(int) RTZipGzipDecompressIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSIOSTREAM phVfsIosGunzip);
/** @name RTZipGzipDecompressIoStream flags.
* @{ */
/** Allow the smaller ZLIB header as well as the regular GZIP header. */
#define RTZIPGZIPDECOMP_F_ALLOW_ZLIB_HDR RT_BIT(0)
/** @} */
/**
* Opens a gzip decompression I/O stream.
*
* @returns IPRT status code.
*
* @param hVfsIosDst The compressed output stream (must be writable).
* The reference is not consumed, instead another
* one is retained.
* @param fFlags Flags, MBZ.
* @param uLevel The gzip compression level, 1 thru 9.
* @param phVfsIosGzip Where to return the gzip input I/O stream handle
* (you write to this).
*/
RTDECL(int) RTZipGzipCompressIoStream(RTVFSIOSTREAM hVfsIosDst, uint32_t fFlags, uint8_t uLevel, PRTVFSIOSTREAM phVfsIosGzip);
/**
* Opens a TAR filesystem stream.
*
* This is used to extract, list or check a TAR archive.
*
* @returns IPRT status code.
*
* @param hVfsIosIn The compressed input stream. The reference is
* not consumed, instead another one is retained.
* @param fFlags Flags, MBZ.
* @param phVfsFss Where to return the handle to the TAR
* filesystem stream.
*/
RTDECL(int) RTZipTarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss);
/**
* A mini TAR program.
*
* @returns Program exit code.
*
* @param cArgs The number of arguments.
* @param papszArgs The argument vector. (Note that this may be
* reordered, so the memory must be writable.)
*/
RTDECL(RTEXITCODE) RTZipTarCmd(unsigned cArgs, char **papszArgs);
/**
* Opens a ZIP filesystem stream.
*
* This is used to extract, list or check a ZIP archive.
*
* @returns IPRT status code.
*
* @param hVfsIosIn The compressed input stream. The reference is
* not consumed, instead another one is retained.
* @param fFlags Flags, MBZ.
* @param phVfsFss Where to return the handle to the TAR
* filesystem stream.
*/
RTDECL(int) RTZipPkzipFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss);
/**
* A mini UNZIP program.
*
* @returns Program exit code.
* @
* @param cArgs The number of arguments.
* @param papszArgs The argument vector. (Note that this may be
* reordered, so the memory must be writable.)
*/
RTDECL(RTEXITCODE) RTZipUnzipCmd(unsigned cArgs, char **papszArgs);
/**
* Helper for decompressing files of a ZIP file located in memory.
*
* @returns IPRT status code.
*
* @param ppvDst Where to store the pointer to the allocated
* buffer. To be freed with RTMemFree().
* @param pcbDst Where to store the pointer to the size of the
* allocated buffer.
* @param pvSrc Pointer to the buffer containing the .zip file.
* @param cbSrc Size of the buffer containing the .zip file.
* @param pszObject Name of the object to extract.
*/
RTDECL(int) RTZipPkzipMemDecompress(void **ppvDst, size_t *pcbDst, const void *pvSrc, size_t cbSrc, const char *pszObject);
/**
* Opens a XAR filesystem stream.
*
* This is used to extract, list or check a XAR archive.
*
* @returns IPRT status code.
*
* @param hVfsIosIn The compressed input stream. The reference is
* not consumed, instead another one is retained.
* @param fFlags Flags, MBZ.
* @param phVfsFss Where to return the handle to the XAR filesystem
* stream.
*/
RTDECL(int) RTZipXarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss);
/** @} */
RT_C_DECLS_END
#endif
|