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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
|
/** @file
* IPRT - Tar archive I/O.
*/
/*
* Copyright (C) 2009-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_tar_h
#define ___iprt_tar_h
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/time.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_tar RTTar - Tar archive I/O
* @ingroup grp_rt
* @{
*/
/** A tar handle */
typedef R3PTRTYPE(struct RTTARINTERNAL *) RTTAR;
/** Pointer to a RTTAR interface handle. */
typedef RTTAR *PRTTAR;
/** Nil RTTAR interface handle. */
#define NIL_RTTAR ((RTTAR)0)
/** A tar file handle */
typedef R3PTRTYPE(struct RTTARFILEINTERNAL *) RTTARFILE;
/** Pointer to a RTTARFILE interface handle. */
typedef RTTARFILE *PRTTARFILE;
/** Nil RTTARFILE interface handle. */
#define NIL_RTTARFILE ((RTTARFILE)0)
/** Maximum length of a tar filename, excluding the terminating '\0'. More
* does not fit into a tar record. */
#define RTTAR_NAME_MAX 99
/**
* Opens a Tar archive.
*
* Use the mask to specify the access type. In create mode the target file
* have not to exists.
*
* @returns IPRT status code.
*
* @param phTar Where to store the RTTAR handle.
* @param pszTarname The file name of the tar archive to open.
* @param fMode Open flags, i.e a combination of the RTFILE_O_* defines.
* The ACCESS, ACTION and DENY flags are mandatory!
* @param fStream Open the file in stream mode. Within this mode no
* seeking is allowed. Use this together with
* RTTarFileCurrent, RTTarFileOpenCurrent,
* RTTarFileSeekNextFile and the read method to
* sequential read a tar file. Currently ignored with
* RTFILE_O_WRITE.
*/
RTR3DECL(int) RTTarOpen(PRTTAR phTar, const char *pszTarname, uint32_t fMode, bool fStream);
#if 0
/**
* Opens a Tar archive by handle.
*
* Use the mask to specify the access type. In create mode the target file
* have not to exists.
*
* @returns IPRT status code.
*
* @param phTar Where to store the RTTAR handle.
* @param hFile The file handle of the tar file. This is expected
* to be a regular file at the moment.
* @param fStream Open the file in stream mode. Within this mode no
* seeking is allowed. Use this together with
* RTTarFileCurrent, RTTarFileOpenCurrent,
* RTTarFileSeekNextFile and the read method to
* sequential read a tar file. Currently ignored with
* RTFILE_O_WRITE.
*/
RTR3DECL(int) RTTarOpenByHandle(PRTTAR phTar, RTFILE hFile, uint32_t fMode, bool fStream);
#endif
/**
* Close the Tar archive.
*
* @returns IPRT status code.
*
* @param hTar Handle to the RTTAR interface.
*/
RTR3DECL(int) RTTarClose(RTTAR hTar);
/**
* Open a file in the Tar archive.
*
* @returns IPRT status code.
*
* @param hTar The handle of the tar archive.
* @param phFile Where to store the handle to the opened file.
* @param pszFilename Path to the file which is to be opened. (UTF-8)
* @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
* The ACCESS, ACTION flags are mandatory! DENY flags
* are currently not supported.
*
* @remarks Write mode means append mode only. It is not possible to make
* changes to existing files.
*
* @remarks Currently it is not possible to open more than one file in write
* mode. Although open more than one file in read only mode (even when
* one file is opened in write mode) is always possible.
*/
RTR3DECL(int) RTTarFileOpen(RTTAR hTar, PRTTARFILE phFile, const char *pszFilename, uint32_t fOpen);
/**
* Close the file opened by RTTarFileOpen.
*
* @returns IPRT status code.
*
* @param hFile The file handle to close.
*/
RTR3DECL(int) RTTarFileClose(RTTARFILE hFile);
/**
* Changes the read & write position in a file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param offSeek Offset to seek.
* @param uMethod Seek method, i.e. one of the RTFILE_SEEK_* defines.
* @param poffActual Where to store the new file position.
* NULL is allowed.
*/
RTR3DECL(int) RTTarFileSeek(RTTARFILE hFile, uint64_t offSeek, unsigned uMethod, uint64_t *poffActual);
/**
* Gets the current file position.
*
* @returns File offset.
* @returns UINT64_MAX on failure.
*
* @param hFile Handle to the file.
*/
RTR3DECL(uint64_t) RTTarFileTell(RTTARFILE hFile);
/**
* Read bytes from a file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param pvBuf Where to put the bytes we read.
* @param cbToRead How much to read.
* @param *pcbRead How much we actually read .
* If NULL an error will be returned for a partial read.
*/
RTR3DECL(int) RTTarFileRead(RTTARFILE hFile, void *pvBuf, size_t cbToRead, size_t *pcbRead);
/**
* Read bytes from a file at a given offset.
* This function may modify the file position.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param off Where to read.
* @param pvBuf Where to put the bytes we read.
* @param cbToRead How much to read.
* @param *pcbRead How much we actually read .
* If NULL an error will be returned for a partial read.
*/
RTR3DECL(int) RTTarFileReadAt(RTTARFILE hFile, uint64_t off, void *pvBuf, size_t cbToRead, size_t *pcbRead);
/**
* Write bytes to a file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param pvBuf What to write.
* @param cbToWrite How much to write.
* @param *pcbWritten How much we actually wrote.
* If NULL an error will be returned for a partial write.
*/
RTR3DECL(int) RTTarFileWrite(RTTARFILE hFile, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
/**
* Write bytes to a file at a given offset.
* This function may modify the file position.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param off Where to write.
* @param pvBuf What to write.
* @param cbToWrite How much to write.
* @param *pcbWritten How much we actually wrote.
* If NULL an error will be returned for a partial write.
*/
RTR3DECL(int) RTTarFileWriteAt(RTTARFILE hFile, uint64_t off, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
/**
* Query the size of the file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param pcbSize Where to store the filesize.
*/
RTR3DECL(int) RTTarFileGetSize(RTTARFILE hFile, uint64_t *pcbSize);
/**
* Set the size of the file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param cbSize The new file size.
*/
RTR3DECL(int) RTTarFileSetSize(RTTARFILE hFile, uint64_t cbSize);
/**
* Gets the mode flags of an open file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
*/
RTR3DECL(int) RTTarFileGetMode(RTTARFILE hFile, uint32_t *pfMode);
/**
* Changes the mode flags of an open file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param fMode The new file mode, see @ref grp_rt_fs for details.
*/
RTR3DECL(int) RTTarFileSetMode(RTTARFILE hFile, uint32_t fMode);
/**
* Gets the modification timestamp of the file.
*
* @returns IPRT status code.
*
* @param pFile Handle to the file.
* @param pTime Where to store the time.
*/
RTR3DECL(int) RTTarFileGetTime(RTTARFILE hFile, PRTTIMESPEC pTime);
/**
* Sets the modification timestamp of the file.
*
* @returns IPRT status code.
*
* @param pFile Handle to the file.
* @param pTime The time to store.
*/
RTR3DECL(int) RTTarFileSetTime(RTTARFILE hFile, PRTTIMESPEC pTime);
/**
* Gets the owner and/or group of an open file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param pUid Where to store the owner user id. NULL is ok.
* @param pGid Where to store the group id. NULL is ok.
*/
RTR3DECL(int) RTTarFileGetOwner(RTTARFILE hFile, uint32_t *pUid, uint32_t *pGid);
/**
* Changes the owner and/or group of an open file.
*
* @returns IPRT status code.
*
* @param hFile Handle to the file.
* @param uid The new file owner user id. Use -1 (or ~0) to leave this unchanged.
* @param gid The new group id. Use -1 (or ~0) to leave this unchanged.
*/
RTR3DECL(int) RTTarFileSetOwner(RTTARFILE hFile, uint32_t uid, uint32_t gid);
/******************************************************************************
* Convenience Functions *
******************************************************************************/
/**
* Check if the specified file exists in the Tar archive.
*
* (The matching is case sensitive.)
*
* @note Currently only regular files are supported.
*
* @returns IPRT status code.
* @retval VINF_SUCCESS when the file exists in the Tar archive.
* @retval VERR_FILE_NOT_FOUND when the file not exists in the Tar archive.
*
* @param pszTarFile Tar file to check.
* @param pszFile Filename to check for.
*
* @todo This is predicate function which SHALL return bool!
*/
RTR3DECL(int) RTTarFileExists(const char *pszTarFile, const char *pszFile);
/**
* Create a file list from a Tar archive.
*
* @note Currently only regular files are supported.
*
* @returns IPRT status code.
*
* @param pszTarFile Tar file to list files from.
* @param ppapszFiles On success an array with array with the filenames is
* returned. The names must be freed with RTStrFree and
* the array with RTMemFree.
* @param pcFiles On success the number of entries in ppapszFiles.
*/
RTR3DECL(int) RTTarList(const char *pszTarFile, char ***ppapszFiles, size_t *pcFiles);
/**
* Extract a file from a Tar archive into a memory buffer.
*
* The caller is responsible for the deletion of the returned memory buffer.
*
* (The matching is case sensitive.)
*
* @note Currently only regular files are supported. Also some of the header
* fields are not used (uid, gid, uname, gname, mtime).
*
* @returns IPRT status code.
*
* @param pszTarFile Tar file to extract files from.
* @param ppBuf The buffer which will held the extracted data.
* @param pcbSize The size (in bytes) of ppBuf after successful
* extraction.
* @param pszFile The file to extract.
* @param pfnProgressCallback Progress callback function. Optional.
* @param pvUser User defined data for the progress
* callback. Optional.
*/
RTR3DECL(int) RTTarExtractFileToBuf(const char *pszTarFile, void **ppvBuf, size_t *pcbSize, const char *pszFile,
PFNRTPROGRESS pfnProgressCallback, void *pvUser);
/**
* Extract a set of files from a Tar archive.
*
* Also note that this function is atomic. If an error occurs all previously
* extracted files will be deleted.
*
* (The matching is case sensitive.)
*
* @note Currently only regular files are supported. Also some of the header
* fields are not used (uid, gid, uname, gname, mtime).
*
* @returns IPRT status code.
*
* @param pszTarFile Tar file to extract files from.
* @param pszOutputDir Where to store the extracted files. Must exist.
* @param papszFiles Which files should be extracted.
* @param cFiles The number of files in papszFiles.
* @param pfnProgressCallback Progress callback function. Optional.
* @param pvUser User defined data for the progress
* callback. Optional.
*/
RTR3DECL(int) RTTarExtractFiles(const char *pszTarFile, const char *pszOutputDir, const char * const *papszFiles, size_t cFiles, PFNRTPROGRESS pfnProgressCallback, void *pvUser);
/**
* Extract all files of the archive.
*
* @note Currently only regular files are supported. Also some of the header
* fields are not used (uid, gid, uname, gname, mtime).
*
* @returns IPRT status code.
*
* @param pszTarFile Tar file to extract the files from.
* @param pszOutputDir Where to store the extracted files. Must exist.
* @param pfnProgressCallback Progress callback function. Optional.
* @param pvUser User defined data for the progress
* callback. Optional.
*/
RTR3DECL(int) RTTarExtractAll(const char *pszTarFile, const char *pszOutputDir, PFNRTPROGRESS pfnProgressCallback, void *pvUser);
/**
* Create a Tar archive out of the given files.
*
* @note Currently only regular files are supported.
*
* @returns IPRT status code.
*
* @param pszTarFile Where to create the Tar archive.
* @param papszFiles Which files should be included.
* @param cFiles The number of files in papszFiles.
* @param pfnProgressCallback Progress callback function. Optional.
* @param pvUser User defined data for the progress
* callback. Optional.
*/
RTR3DECL(int) RTTarCreate(const char *pszTarFile, const char * const *papszFiles, size_t cFiles, PFNRTPROGRESS pfnProgressCallback, void *pvUser);
/******************************************************************************
* Streaming Functions *
******************************************************************************/
/**
* Return the filename where RTTar currently stays at.
*
* @returns IPRT status code.
*
* @param hTar Handle to the RTTAR interface.
* @param ppszFilename On success the filename.
*/
RTR3DECL(int) RTTarCurrentFile(RTTAR hTar, char **ppszFilename);
/**
* Jumps to the next file from the current RTTar position.
*
* @returns IPRT status code.
*
* @param hTar Handle to the RTTAR interface.
*/
RTR3DECL(int) RTTarSeekNextFile(RTTAR hTar);
/**
* Opens the file where RTTar currently stays at.
*
* @returns IPRT status code.
*
* @param hTar Handle to the RTTAR interface.
* @param phFile Where to store the handle to the opened file.
* @param ppszFilename On success the filename.
* @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
* The ACCESS, ACTION flags are mandatory! Currently
* only RTFILE_O_OPEN | RTFILE_O_READ is supported.
*/
RTR3DECL(int) RTTarFileOpenCurrentFile(RTTAR hTar, PRTTARFILE phFile, char **ppszFilename, uint32_t fOpen);
/** @} */
RT_C_DECLS_END
#endif /* ___iprt_tar_h */
|