1 | /** @file
|
---|
2 | * IPRT - Tar archive I/O.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2009-2015 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___iprt_tar_h
|
---|
27 | #define ___iprt_tar_h
|
---|
28 |
|
---|
29 | #include <iprt/cdefs.h>
|
---|
30 | #include <iprt/types.h>
|
---|
31 | #include <iprt/time.h>
|
---|
32 |
|
---|
33 | RT_C_DECLS_BEGIN
|
---|
34 |
|
---|
35 | /** @defgroup grp_rt_tar RTTar - Tar archive I/O
|
---|
36 | * @ingroup grp_rt
|
---|
37 | *
|
---|
38 | * @deprecated Only used for legacy code and writing. Migrate new code to the
|
---|
39 | * VFS interface, add the write part when needed.
|
---|
40 | *
|
---|
41 | * @{
|
---|
42 | */
|
---|
43 |
|
---|
44 | /** A tar handle */
|
---|
45 | typedef R3PTRTYPE(struct RTTARINTERNAL *) RTTAR;
|
---|
46 | /** Pointer to a RTTAR interface handle. */
|
---|
47 | typedef RTTAR *PRTTAR;
|
---|
48 | /** Nil RTTAR interface handle. */
|
---|
49 | #define NIL_RTTAR ((RTTAR)0)
|
---|
50 |
|
---|
51 | /** A tar file handle */
|
---|
52 | typedef R3PTRTYPE(struct RTTARFILEINTERNAL *) RTTARFILE;
|
---|
53 | /** Pointer to a RTTARFILE interface handle. */
|
---|
54 | typedef RTTARFILE *PRTTARFILE;
|
---|
55 | /** Nil RTTARFILE interface handle. */
|
---|
56 | #define NIL_RTTARFILE ((RTTARFILE)0)
|
---|
57 |
|
---|
58 | /** Maximum length of a tar filename, excluding the terminating '\0'. More
|
---|
59 | * does not fit into a tar record. */
|
---|
60 | #define RTTAR_NAME_MAX 99
|
---|
61 |
|
---|
62 | /**
|
---|
63 | * Creates a Tar archive.
|
---|
64 | *
|
---|
65 | * Use the mask to specify the access type.
|
---|
66 | *
|
---|
67 | * @returns IPRT status code.
|
---|
68 | *
|
---|
69 | * @param phTar Where to store the RTTAR handle.
|
---|
70 | * @param pszTarname The file name of the tar archive to create. Should
|
---|
71 | * not exist.
|
---|
72 | * @param fMode Open flags, i.e a combination of the RTFILE_O_* defines.
|
---|
73 | * The ACCESS, ACTION and DENY flags are mandatory!
|
---|
74 | */
|
---|
75 | RTR3DECL(int) RTTarOpen(PRTTAR phTar, const char *pszTarname, uint32_t fMode);
|
---|
76 |
|
---|
77 | /**
|
---|
78 | * Close the Tar archive.
|
---|
79 | *
|
---|
80 | * @returns IPRT status code.
|
---|
81 | *
|
---|
82 | * @param hTar Handle to the RTTAR interface.
|
---|
83 | */
|
---|
84 | RTR3DECL(int) RTTarClose(RTTAR hTar);
|
---|
85 |
|
---|
86 | /**
|
---|
87 | * Open a file in the Tar archive.
|
---|
88 | *
|
---|
89 | * @returns IPRT status code.
|
---|
90 | *
|
---|
91 | * @param hTar The handle of the tar archive.
|
---|
92 | * @param phFile Where to store the handle to the opened file.
|
---|
93 | * @param pszFilename Path to the file which is to be opened. (UTF-8)
|
---|
94 | * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
|
---|
95 | * The ACCESS, ACTION flags are mandatory! DENY flags
|
---|
96 | * are currently not supported.
|
---|
97 | *
|
---|
98 | * @remarks Write mode means append mode only. It is not possible to make
|
---|
99 | * changes to existing files.
|
---|
100 | *
|
---|
101 | * @remarks Currently it is not possible to open more than one file in write
|
---|
102 | * mode. Although open more than one file in read only mode (even when
|
---|
103 | * one file is opened in write mode) is always possible.
|
---|
104 | */
|
---|
105 | RTR3DECL(int) RTTarFileOpen(RTTAR hTar, PRTTARFILE phFile, const char *pszFilename, uint32_t fOpen);
|
---|
106 |
|
---|
107 | /**
|
---|
108 | * Close the file opened by RTTarFileOpen.
|
---|
109 | *
|
---|
110 | * @returns IPRT status code.
|
---|
111 | *
|
---|
112 | * @param hFile The file handle to close.
|
---|
113 | */
|
---|
114 | RTR3DECL(int) RTTarFileClose(RTTARFILE hFile);
|
---|
115 |
|
---|
116 | /**
|
---|
117 | * Read bytes from a file at a given offset.
|
---|
118 | * This function may modify the file position.
|
---|
119 | *
|
---|
120 | * @returns IPRT status code.
|
---|
121 | *
|
---|
122 | * @param hFile Handle to the file.
|
---|
123 | * @param off Where to read.
|
---|
124 | * @param pvBuf Where to put the bytes we read.
|
---|
125 | * @param cbToRead How much to read.
|
---|
126 | * @param pcbRead Where to return how much we actually read. If NULL
|
---|
127 | * an error will be returned for a partial read.
|
---|
128 | */
|
---|
129 | RTR3DECL(int) RTTarFileReadAt(RTTARFILE hFile, uint64_t off, void *pvBuf, size_t cbToRead, size_t *pcbRead);
|
---|
130 |
|
---|
131 | /**
|
---|
132 | * Write bytes to a file at a given offset.
|
---|
133 | * This function may modify the file position.
|
---|
134 | *
|
---|
135 | * @returns IPRT status code.
|
---|
136 | *
|
---|
137 | * @param hFile Handle to the file.
|
---|
138 | * @param off Where to write.
|
---|
139 | * @param pvBuf What to write.
|
---|
140 | * @param cbToWrite How much to write.
|
---|
141 | * @param pcbWritten Where to return how much we actually wrote. If NULL
|
---|
142 | * an error will be returned for a partial write.
|
---|
143 | */
|
---|
144 | RTR3DECL(int) RTTarFileWriteAt(RTTARFILE hFile, uint64_t off, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
|
---|
145 |
|
---|
146 | /**
|
---|
147 | * Query the size of the file.
|
---|
148 | *
|
---|
149 | * @returns IPRT status code.
|
---|
150 | *
|
---|
151 | * @param hFile Handle to the file.
|
---|
152 | * @param pcbSize Where to store the filesize.
|
---|
153 | */
|
---|
154 | RTR3DECL(int) RTTarFileGetSize(RTTARFILE hFile, uint64_t *pcbSize);
|
---|
155 |
|
---|
156 | /**
|
---|
157 | * Set the size of the file.
|
---|
158 | *
|
---|
159 | * @returns IPRT status code.
|
---|
160 | *
|
---|
161 | * @param hFile Handle to the file.
|
---|
162 | * @param cbSize The new file size.
|
---|
163 | */
|
---|
164 | RTR3DECL(int) RTTarFileSetSize(RTTARFILE hFile, uint64_t cbSize);
|
---|
165 |
|
---|
166 | /** @} */
|
---|
167 |
|
---|
168 | RT_C_DECLS_END
|
---|
169 |
|
---|
170 | #endif
|
---|
171 |
|
---|