1 | /** @file
|
---|
2 | * IPRT - File I/O.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2019 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_INCLUDED_file_h
|
---|
27 | #define IPRT_INCLUDED_file_h
|
---|
28 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
29 | # pragma once
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | #include <iprt/cdefs.h>
|
---|
33 | #include <iprt/types.h>
|
---|
34 | #include <iprt/stdarg.h>
|
---|
35 | #include <iprt/fs.h>
|
---|
36 | #include <iprt/sg.h>
|
---|
37 |
|
---|
38 | RT_C_DECLS_BEGIN
|
---|
39 |
|
---|
40 | /** @defgroup grp_rt_fileio RTFile - File I/O
|
---|
41 | * @ingroup grp_rt
|
---|
42 | * @{
|
---|
43 | */
|
---|
44 |
|
---|
45 | /** Platform specific text line break.
|
---|
46 | * @deprecated Use text I/O streams and '\\n'. See iprt/stream.h. */
|
---|
47 | #if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
|
---|
48 | # define RTFILE_LINEFEED "\r\n"
|
---|
49 | #else
|
---|
50 | # define RTFILE_LINEFEED "\n"
|
---|
51 | #endif
|
---|
52 |
|
---|
53 | /** Platform specific native standard input "handle". */
|
---|
54 | #ifdef RT_OS_WINDOWS
|
---|
55 | # define RTFILE_NATIVE_STDIN ((uint32_t)-10)
|
---|
56 | #else
|
---|
57 | # define RTFILE_NATIVE_STDIN 0
|
---|
58 | #endif
|
---|
59 |
|
---|
60 | /** Platform specific native standard out "handle". */
|
---|
61 | #ifdef RT_OS_WINDOWS
|
---|
62 | # define RTFILE_NATIVE_STDOUT ((uint32_t)-11)
|
---|
63 | #else
|
---|
64 | # define RTFILE_NATIVE_STDOUT 1
|
---|
65 | #endif
|
---|
66 |
|
---|
67 | /** Platform specific native standard error "handle". */
|
---|
68 | #ifdef RT_OS_WINDOWS
|
---|
69 | # define RTFILE_NATIVE_STDERR ((uint32_t)-12)
|
---|
70 | #else
|
---|
71 | # define RTFILE_NATIVE_STDERR 2
|
---|
72 | #endif
|
---|
73 |
|
---|
74 |
|
---|
75 | /**
|
---|
76 | * Checks if the specified file name exists and is a regular file.
|
---|
77 | *
|
---|
78 | * Symbolic links will be resolved.
|
---|
79 | *
|
---|
80 | * @returns true if it's a regular file, false if it isn't.
|
---|
81 | * @param pszPath The path to the file.
|
---|
82 | *
|
---|
83 | * @sa RTDirExists, RTPathExists, RTSymlinkExists.
|
---|
84 | */
|
---|
85 | RTDECL(bool) RTFileExists(const char *pszPath);
|
---|
86 |
|
---|
87 | /**
|
---|
88 | * Queries the size of a file, given the path to it.
|
---|
89 | *
|
---|
90 | * Symbolic links will be resolved.
|
---|
91 | *
|
---|
92 | * @returns IPRT status code.
|
---|
93 | * @param pszPath The path to the file.
|
---|
94 | * @param pcbFile Where to return the file size (bytes).
|
---|
95 | *
|
---|
96 | * @sa RTFileGetSize, RTPathQueryInfoEx.
|
---|
97 | */
|
---|
98 | RTDECL(int) RTFileQuerySize(const char *pszPath, uint64_t *pcbFile);
|
---|
99 |
|
---|
100 |
|
---|
101 | /** @name Open flags
|
---|
102 | * @{ */
|
---|
103 | /** Attribute access only.
|
---|
104 | * @remarks Only accepted on windows, requires RTFILE_O_ACCESS_ATTR_MASK
|
---|
105 | * to yield a non-zero result. Otherwise, this is invalid. */
|
---|
106 | #define RTFILE_O_ATTR_ONLY UINT32_C(0x00000000)
|
---|
107 | /** Open the file with read access. */
|
---|
108 | #define RTFILE_O_READ UINT32_C(0x00000001)
|
---|
109 | /** Open the file with write access. */
|
---|
110 | #define RTFILE_O_WRITE UINT32_C(0x00000002)
|
---|
111 | /** Open the file with read & write access. */
|
---|
112 | #define RTFILE_O_READWRITE UINT32_C(0x00000003)
|
---|
113 | /** The file access mask.
|
---|
114 | * @remarks The value 0 is invalid, except for windows special case. */
|
---|
115 | #define RTFILE_O_ACCESS_MASK UINT32_C(0x00000003)
|
---|
116 |
|
---|
117 | /** Open file in APPEND mode, so all writes to the file handle will
|
---|
118 | * append data at the end of the file.
|
---|
119 | * @remarks It is ignored if write access is not requested, that is
|
---|
120 | * RTFILE_O_WRITE is not set. */
|
---|
121 | #define RTFILE_O_APPEND UINT32_C(0x00000004)
|
---|
122 | /* UINT32_C(0x00000008) is unused atm. */
|
---|
123 |
|
---|
124 | /** Sharing mode: deny none. */
|
---|
125 | #define RTFILE_O_DENY_NONE UINT32_C(0x00000080)
|
---|
126 | /** Sharing mode: deny read. */
|
---|
127 | #define RTFILE_O_DENY_READ UINT32_C(0x00000010)
|
---|
128 | /** Sharing mode: deny write. */
|
---|
129 | #define RTFILE_O_DENY_WRITE UINT32_C(0x00000020)
|
---|
130 | /** Sharing mode: deny read and write. */
|
---|
131 | #define RTFILE_O_DENY_READWRITE UINT32_C(0x00000030)
|
---|
132 | /** Sharing mode: deny all. */
|
---|
133 | #define RTFILE_O_DENY_ALL RTFILE_O_DENY_READWRITE
|
---|
134 | /** Sharing mode: do NOT deny delete (NT).
|
---|
135 | * @remarks This might not be implemented on all platforms, and will be
|
---|
136 | * defaulted & ignored on those.
|
---|
137 | */
|
---|
138 | #define RTFILE_O_DENY_NOT_DELETE UINT32_C(0x00000040)
|
---|
139 | /** Sharing mode mask. */
|
---|
140 | #define RTFILE_O_DENY_MASK UINT32_C(0x000000f0)
|
---|
141 |
|
---|
142 | /** Action: Open an existing file. */
|
---|
143 | #define RTFILE_O_OPEN UINT32_C(0x00000700)
|
---|
144 | /** Action: Create a new file or open an existing one. */
|
---|
145 | #define RTFILE_O_OPEN_CREATE UINT32_C(0x00000100)
|
---|
146 | /** Action: Create a new a file. */
|
---|
147 | #define RTFILE_O_CREATE UINT32_C(0x00000200)
|
---|
148 | /** Action: Create a new file or replace an existing one. */
|
---|
149 | #define RTFILE_O_CREATE_REPLACE UINT32_C(0x00000300)
|
---|
150 | /** Action mask. */
|
---|
151 | #define RTFILE_O_ACTION_MASK UINT32_C(0x00000700)
|
---|
152 |
|
---|
153 | /** Turns off indexing of files on Windows hosts, *CREATE* only.
|
---|
154 | * @remarks Window only. */
|
---|
155 | #define RTFILE_O_NOT_CONTENT_INDEXED UINT32_C(0x00000800)
|
---|
156 | /** Truncate the file.
|
---|
157 | * @remarks This will not truncate files opened for read-only.
|
---|
158 | * @remarks The truncation doesn't have to be atomically, so anyone else opening
|
---|
159 | * the file may be racing us. The caller is responsible for not causing
|
---|
160 | * this race. */
|
---|
161 | #define RTFILE_O_TRUNCATE UINT32_C(0x00001000)
|
---|
162 | /** Make the handle inheritable on RTProcessCreate(/exec). */
|
---|
163 | #define RTFILE_O_INHERIT UINT32_C(0x00002000)
|
---|
164 | /** Open file in non-blocking mode - non-portable.
|
---|
165 | * @remarks This flag may not be supported on all platforms, in which case it's
|
---|
166 | * considered an invalid parameter. */
|
---|
167 | #define RTFILE_O_NON_BLOCK UINT32_C(0x00004000)
|
---|
168 | /** Write through directly to disk. Workaround to avoid iSCSI
|
---|
169 | * initiator deadlocks on Windows hosts.
|
---|
170 | * @remarks This might not be implemented on all platforms, and will be ignored
|
---|
171 | * on those. */
|
---|
172 | #define RTFILE_O_WRITE_THROUGH UINT32_C(0x00008000)
|
---|
173 |
|
---|
174 | /** Attribute access: Attributes can be read if the file is being opened with
|
---|
175 | * read access, and can be written with write access. */
|
---|
176 | #define RTFILE_O_ACCESS_ATTR_DEFAULT UINT32_C(0x00000000)
|
---|
177 | /** Attribute access: Attributes can be read.
|
---|
178 | * @remarks Windows only. */
|
---|
179 | #define RTFILE_O_ACCESS_ATTR_READ UINT32_C(0x00010000)
|
---|
180 | /** Attribute access: Attributes can be written.
|
---|
181 | * @remarks Windows only. */
|
---|
182 | #define RTFILE_O_ACCESS_ATTR_WRITE UINT32_C(0x00020000)
|
---|
183 | /** Attribute access: Attributes can be both read & written.
|
---|
184 | * @remarks Windows only. */
|
---|
185 | #define RTFILE_O_ACCESS_ATTR_READWRITE UINT32_C(0x00030000)
|
---|
186 | /** Attribute access: The file attributes access mask.
|
---|
187 | * @remarks Windows only. */
|
---|
188 | #define RTFILE_O_ACCESS_ATTR_MASK UINT32_C(0x00030000)
|
---|
189 |
|
---|
190 | /** Open file for async I/O
|
---|
191 | * @remarks This flag may not be needed on all platforms, and will be ignored on
|
---|
192 | * those. */
|
---|
193 | #define RTFILE_O_ASYNC_IO UINT32_C(0x00040000)
|
---|
194 |
|
---|
195 | /** Disables caching.
|
---|
196 | *
|
---|
197 | * Useful when using very big files which might bring the host I/O scheduler to
|
---|
198 | * its knees during high I/O load.
|
---|
199 | *
|
---|
200 | * @remarks This flag might impose restrictions
|
---|
201 | * on the buffer alignment, start offset and/or transfer size.
|
---|
202 | *
|
---|
203 | * On Linux the buffer needs to be aligned to the 512 sector
|
---|
204 | * boundary.
|
---|
205 | *
|
---|
206 | * On Windows the FILE_FLAG_NO_BUFFERING is used (see
|
---|
207 | * http://msdn.microsoft.com/en-us/library/cc644950(VS.85).aspx ).
|
---|
208 | * The buffer address, the transfer size and offset needs to be aligned
|
---|
209 | * to the sector size of the volume. Furthermore FILE_APPEND_DATA is
|
---|
210 | * disabled. To write beyond the size of file use RTFileSetSize prior
|
---|
211 | * writing the data to the file.
|
---|
212 | *
|
---|
213 | * This flag does not work on Solaris if the target filesystem is ZFS.
|
---|
214 | * RTFileOpen will return an error with that configuration. When used
|
---|
215 | * with UFS the same alginment restrictions apply like Linux and
|
---|
216 | * Windows.
|
---|
217 | *
|
---|
218 | * @remarks This might not be implemented on all platforms, and will be ignored
|
---|
219 | * on those.
|
---|
220 | */
|
---|
221 | #define RTFILE_O_NO_CACHE UINT32_C(0x00080000)
|
---|
222 |
|
---|
223 | /** Don't allow symbolic links as part of the path.
|
---|
224 | * @remarks this flag is currently not implemented and will be ignored. */
|
---|
225 | #define RTFILE_O_NO_SYMLINKS UINT32_C(0x20000000)
|
---|
226 |
|
---|
227 | /** Unix file mode mask for use when creating files. */
|
---|
228 | #define RTFILE_O_CREATE_MODE_MASK UINT32_C(0x1ff00000)
|
---|
229 | /** The number of bits to shift to get the file mode mask.
|
---|
230 | * To extract it: (fFlags & RTFILE_O_CREATE_MODE_MASK) >> RTFILE_O_CREATE_MODE_SHIFT.
|
---|
231 | */
|
---|
232 | #define RTFILE_O_CREATE_MODE_SHIFT 20
|
---|
233 |
|
---|
234 | /* UINT32_C(0x40000000)
|
---|
235 | and UINT32_C(0x80000000) are unused atm. */
|
---|
236 |
|
---|
237 | /** Mask of all valid flags.
|
---|
238 | * @remark This doesn't validate the access mode properly.
|
---|
239 | */
|
---|
240 | #define RTFILE_O_VALID_MASK UINT32_C(0x3ffffff7)
|
---|
241 |
|
---|
242 | /** @} */
|
---|
243 |
|
---|
244 |
|
---|
245 | /** Action taken by RTFileOpenEx. */
|
---|
246 | typedef enum RTFILEACTION
|
---|
247 | {
|
---|
248 | /** Invalid zero value. */
|
---|
249 | RTFILEACTION_INVALID = 0,
|
---|
250 | /** Existing file was opened (returned by RTFILE_O_OPEN and
|
---|
251 | * RTFILE_O_OPEN_CREATE). */
|
---|
252 | RTFILEACTION_OPENED,
|
---|
253 | /** New file was created (returned by RTFILE_O_CREATE and
|
---|
254 | * RTFILE_O_OPEN_CREATE). */
|
---|
255 | RTFILEACTION_CREATED,
|
---|
256 | /** Existing file was replaced (returned by RTFILE_O_CREATE_REPLACE). */
|
---|
257 | RTFILEACTION_REPLACED,
|
---|
258 | /** Existing file was truncated (returned if RTFILE_O_TRUNCATE take effect). */
|
---|
259 | RTFILEACTION_TRUNCATED,
|
---|
260 | /** The file already exists (returned by RTFILE_O_CREATE on failure). */
|
---|
261 | RTFILEACTION_ALREADY_EXISTS,
|
---|
262 | /** End of valid values. */
|
---|
263 | RTFILEACTION_END,
|
---|
264 | /** Type size hack. */
|
---|
265 | RTFILEACTION_32BIT_HACK = 0x7fffffff
|
---|
266 | } RTFILEACTION;
|
---|
267 | /** Pointer to action taken value (RTFileOpenEx). */
|
---|
268 | typedef RTFILEACTION *PRTFILEACTION;
|
---|
269 |
|
---|
270 |
|
---|
271 | #ifdef IN_RING3
|
---|
272 | /**
|
---|
273 | * Force the use of open flags for all files opened after the setting is
|
---|
274 | * changed. The caller is responsible for not causing races with RTFileOpen().
|
---|
275 | *
|
---|
276 | * @returns iprt status code.
|
---|
277 | * @param fOpenForAccess Access mode to which the set/mask settings apply.
|
---|
278 | * @param fSet Open flags to be forced set.
|
---|
279 | * @param fMask Open flags to be masked out.
|
---|
280 | */
|
---|
281 | RTR3DECL(int) RTFileSetForceFlags(unsigned fOpenForAccess, unsigned fSet, unsigned fMask);
|
---|
282 | #endif /* IN_RING3 */
|
---|
283 |
|
---|
284 | /**
|
---|
285 | * Open a file.
|
---|
286 | *
|
---|
287 | * @returns iprt status code.
|
---|
288 | * @param pFile Where to store the handle to the opened file.
|
---|
289 | * @param pszFilename Path to the file which is to be opened. (UTF-8)
|
---|
290 | * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
|
---|
291 | * The ACCESS, ACTION and DENY flags are mandatory!
|
---|
292 | */
|
---|
293 | RTDECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, uint64_t fOpen);
|
---|
294 |
|
---|
295 | /**
|
---|
296 | * Open a file given as a format string.
|
---|
297 | *
|
---|
298 | * @returns iprt status code.
|
---|
299 | * @param pFile Where to store the handle to the opened file.
|
---|
300 | * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
|
---|
301 | * The ACCESS, ACTION and DENY flags are mandatory!
|
---|
302 | * @param pszFilenameFmt Format string givin the path to the file which is to
|
---|
303 | * be opened. (UTF-8)
|
---|
304 | * @param ... Arguments to the format string.
|
---|
305 | */
|
---|
306 | RTDECL(int) RTFileOpenF(PRTFILE pFile, uint64_t fOpen, const char *pszFilenameFmt, ...) RT_IPRT_FORMAT_ATTR(3, 4);
|
---|
307 |
|
---|
308 | /**
|
---|
309 | * Open a file given as a format string.
|
---|
310 | *
|
---|
311 | * @returns iprt status code.
|
---|
312 | * @param pFile Where to store the handle to the opened file.
|
---|
313 | * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
|
---|
314 | * The ACCESS, ACTION and DENY flags are mandatory!
|
---|
315 | * @param pszFilenameFmt Format string givin the path to the file which is to
|
---|
316 | * be opened. (UTF-8)
|
---|
317 | * @param va Arguments to the format string.
|
---|
318 | */
|
---|
319 | RTDECL(int) RTFileOpenV(PRTFILE pFile, uint64_t fOpen, const char *pszFilenameFmt, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
|
---|
320 |
|
---|
321 | /**
|
---|
322 | * Open a file, extended version.
|
---|
323 | *
|
---|
324 | * @returns iprt status code.
|
---|
325 | * @param pszFilename Path to the file which is to be opened. (UTF-8)
|
---|
326 | * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
|
---|
327 | * The ACCESS, ACTION and DENY flags are mandatory!
|
---|
328 | * @param phFile Where to store the handle to the opened file.
|
---|
329 | * @param penmActionTaken Where to return an indicator of which action was
|
---|
330 | * taken. This is optional and it is recommended to
|
---|
331 | * pass NULL when not strictly needed as it adds
|
---|
332 | * complexity (slower) on posix systems.
|
---|
333 | */
|
---|
334 | RTDECL(int) RTFileOpenEx(const char *pszFilename, uint64_t fOpen, PRTFILE phFile, PRTFILEACTION penmActionTaken);
|
---|
335 |
|
---|
336 | /**
|
---|
337 | * Open the bit bucket (aka /dev/null or nul).
|
---|
338 | *
|
---|
339 | * @returns IPRT status code.
|
---|
340 | * @param phFile Where to store the handle to the opened file.
|
---|
341 | * @param fAccess The desired access only, i.e. read, write or both.
|
---|
342 | */
|
---|
343 | RTDECL(int) RTFileOpenBitBucket(PRTFILE phFile, uint64_t fAccess);
|
---|
344 |
|
---|
345 | /**
|
---|
346 | * Close a file opened by RTFileOpen().
|
---|
347 | *
|
---|
348 | * @returns iprt status code.
|
---|
349 | * @param File The file handle to close.
|
---|
350 | */
|
---|
351 | RTDECL(int) RTFileClose(RTFILE File);
|
---|
352 |
|
---|
353 | /**
|
---|
354 | * Creates an IPRT file handle from a native one.
|
---|
355 | *
|
---|
356 | * @returns IPRT status code.
|
---|
357 | * @param pFile Where to store the IPRT file handle.
|
---|
358 | * @param uNative The native handle.
|
---|
359 | */
|
---|
360 | RTDECL(int) RTFileFromNative(PRTFILE pFile, RTHCINTPTR uNative);
|
---|
361 |
|
---|
362 | /**
|
---|
363 | * Gets the native handle for an IPRT file handle.
|
---|
364 | *
|
---|
365 | * @return The native handle.
|
---|
366 | * @param File The IPRT file handle.
|
---|
367 | */
|
---|
368 | RTDECL(RTHCINTPTR) RTFileToNative(RTFILE File);
|
---|
369 |
|
---|
370 | /**
|
---|
371 | * Delete a file.
|
---|
372 | *
|
---|
373 | * @returns iprt status code.
|
---|
374 | * @param pszFilename Path to the file which is to be deleted. (UTF-8)
|
---|
375 | * @todo This is a RTPath api!
|
---|
376 | */
|
---|
377 | RTDECL(int) RTFileDelete(const char *pszFilename);
|
---|
378 |
|
---|
379 | /** @name Seek flags.
|
---|
380 | * @{ */
|
---|
381 | /** Seek from the start of the file. */
|
---|
382 | #define RTFILE_SEEK_BEGIN 0x00
|
---|
383 | /** Seek from the current file position. */
|
---|
384 | #define RTFILE_SEEK_CURRENT 0x01
|
---|
385 | /** Seek from the end of the file. */
|
---|
386 | #define RTFILE_SEEK_END 0x02
|
---|
387 | /** @internal */
|
---|
388 | #define RTFILE_SEEK_FIRST RTFILE_SEEK_BEGIN
|
---|
389 | /** @internal */
|
---|
390 | #define RTFILE_SEEK_LAST RTFILE_SEEK_END
|
---|
391 | /** @} */
|
---|
392 |
|
---|
393 |
|
---|
394 | /**
|
---|
395 | * Changes the read & write position in a file.
|
---|
396 | *
|
---|
397 | * @returns iprt status code.
|
---|
398 | * @param File Handle to the file.
|
---|
399 | * @param offSeek Offset to seek.
|
---|
400 | * @param uMethod Seek method, i.e. one of the RTFILE_SEEK_* defines.
|
---|
401 | * @param poffActual Where to store the new file position.
|
---|
402 | * NULL is allowed.
|
---|
403 | */
|
---|
404 | RTDECL(int) RTFileSeek(RTFILE File, int64_t offSeek, unsigned uMethod, uint64_t *poffActual);
|
---|
405 |
|
---|
406 | /**
|
---|
407 | * Read bytes from a file.
|
---|
408 | *
|
---|
409 | * @returns iprt status code.
|
---|
410 | * @param File Handle to the file.
|
---|
411 | * @param pvBuf Where to put the bytes we read.
|
---|
412 | * @param cbToRead How much to read.
|
---|
413 | * @param pcbRead How much we actually read .
|
---|
414 | * If NULL an error will be returned for a partial read.
|
---|
415 | */
|
---|
416 | RTDECL(int) RTFileRead(RTFILE File, void *pvBuf, size_t cbToRead, size_t *pcbRead);
|
---|
417 |
|
---|
418 | /**
|
---|
419 | * Read bytes from a file at a given offset.
|
---|
420 | *
|
---|
421 | * @returns iprt status code.
|
---|
422 | * @param File Handle to the file.
|
---|
423 | * @param off Where to read.
|
---|
424 | * @param pvBuf Where to put the bytes we read.
|
---|
425 | * @param cbToRead How much to read.
|
---|
426 | * @param pcbRead How much we actually read .
|
---|
427 | * If NULL an error will be returned for a partial read.
|
---|
428 | *
|
---|
429 | * @note OS/2 requires separate seek and write calls.
|
---|
430 | *
|
---|
431 | * @note Whether the file position is modified or not is host specific.
|
---|
432 | */
|
---|
433 | RTDECL(int) RTFileReadAt(RTFILE File, RTFOFF off, void *pvBuf, size_t cbToRead, size_t *pcbRead);
|
---|
434 |
|
---|
435 | /**
|
---|
436 | * Read bytes from a file at a given offset into a S/G buffer.
|
---|
437 | *
|
---|
438 | * @returns iprt status code.
|
---|
439 | * @param hFile Handle to the file.
|
---|
440 | * @param pSgBuf Pointer to the S/G buffer to read into.
|
---|
441 | * @param cbToRead How much to read.
|
---|
442 | * @param pcbRead How much we actually read .
|
---|
443 | * If NULL an error will be returned for a partial read.
|
---|
444 | *
|
---|
445 | * @note It is not possible to guarantee atomicity on all platforms, so
|
---|
446 | * caller must take care wrt concurrent access to @a hFile.
|
---|
447 | */
|
---|
448 | RTDECL(int) RTFileSgRead(RTFILE hFile, PRTSGBUF pSgBuf, size_t cbToRead, size_t *pcbRead);
|
---|
449 |
|
---|
450 | /**
|
---|
451 | * Read bytes from a file at a given offset into a S/G buffer.
|
---|
452 | *
|
---|
453 | * @returns iprt status code.
|
---|
454 | * @param hFile Handle to the file.
|
---|
455 | * @param off Where to read.
|
---|
456 | * @param pSgBuf Pointer to the S/G buffer to read into.
|
---|
457 | * @param cbToRead How much to read.
|
---|
458 | * @param pcbRead How much we actually read .
|
---|
459 | * If NULL an error will be returned for a partial read.
|
---|
460 | *
|
---|
461 | * @note Whether the file position is modified or not is host specific.
|
---|
462 | *
|
---|
463 | * @note It is not possible to guarantee atomicity on all platforms, so
|
---|
464 | * caller must take care wrt concurrent access to @a hFile.
|
---|
465 | */
|
---|
466 | RTDECL(int) RTFileSgReadAt(RTFILE hFile, RTFOFF off, PRTSGBUF pSgBuf, size_t cbToRead, size_t *pcbRead);
|
---|
467 |
|
---|
468 | /**
|
---|
469 | * Write bytes to a file.
|
---|
470 | *
|
---|
471 | * @returns iprt status code.
|
---|
472 | * @param File Handle to the file.
|
---|
473 | * @param pvBuf What to write.
|
---|
474 | * @param cbToWrite How much to write.
|
---|
475 | * @param pcbWritten How much we actually wrote.
|
---|
476 | * If NULL an error will be returned for a partial write.
|
---|
477 | */
|
---|
478 | RTDECL(int) RTFileWrite(RTFILE File, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
|
---|
479 |
|
---|
480 | /**
|
---|
481 | * Write bytes to a file at a given offset.
|
---|
482 | *
|
---|
483 | * @returns iprt status code.
|
---|
484 | * @param hFile Handle to the file.
|
---|
485 | * @param off Where to write.
|
---|
486 | * @param pvBuf What to write.
|
---|
487 | * @param cbToWrite How much to write.
|
---|
488 | * @param pcbWritten How much we actually wrote.
|
---|
489 | * If NULL an error will be returned for a partial write.
|
---|
490 | *
|
---|
491 | * @note OS/2 requires separate seek and write calls.
|
---|
492 | *
|
---|
493 | * @note Whether the file position is modified or not is host specific.
|
---|
494 | *
|
---|
495 | * @note Whether @a off is used when @a hFile was opened with RTFILE_O_APPEND
|
---|
496 | * is also host specific. Currently Linux is the the only one
|
---|
497 | * documented to ignore @a off.
|
---|
498 | */
|
---|
499 | RTDECL(int) RTFileWriteAt(RTFILE hFile, RTFOFF off, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
|
---|
500 |
|
---|
501 | /**
|
---|
502 | * Write bytes from a S/G buffer to a file.
|
---|
503 | *
|
---|
504 | * @returns iprt status code.
|
---|
505 | * @param hFile Handle to the file.
|
---|
506 | * @param pSgBuf What to write.
|
---|
507 | * @param cbToWrite How much to write.
|
---|
508 | * @param pcbWritten How much we actually wrote.
|
---|
509 | * If NULL an error will be returned for a partial write.
|
---|
510 | *
|
---|
511 | * @note It is not possible to guarantee atomicity on all platforms, so
|
---|
512 | * caller must take care wrt concurrent access to @a hFile.
|
---|
513 | */
|
---|
514 | RTDECL(int) RTFileSgWrite(RTFILE hFile, PRTSGBUF pSgBuf, size_t cbToWrite, size_t *pcbWritten);
|
---|
515 |
|
---|
516 | /**
|
---|
517 | * Write bytes from a S/G buffer to a file at a given offset.
|
---|
518 | *
|
---|
519 | * @returns iprt status code.
|
---|
520 | * @param hFile Handle to the file.
|
---|
521 | * @param off Where to write.
|
---|
522 | * @param pSgBuf What to write.
|
---|
523 | * @param cbToWrite How much to write.
|
---|
524 | * @param pcbWritten How much we actually wrote.
|
---|
525 | * If NULL an error will be returned for a partial write.
|
---|
526 | *
|
---|
527 | * @note It is not possible to guarantee atomicity on all platforms, so
|
---|
528 | * caller must take care wrt concurrent access to @a hFile.
|
---|
529 | *
|
---|
530 | * @note Whether the file position is modified or not is host specific.
|
---|
531 | *
|
---|
532 | * @note Whether @a off is used when @a hFile was opened with RTFILE_O_APPEND
|
---|
533 | * is also host specific. Currently Linux is the the only one
|
---|
534 | * documented to ignore @a off.
|
---|
535 | */
|
---|
536 | RTDECL(int) RTFileSgWriteAt(RTFILE hFile, RTFOFF off, PRTSGBUF pSgBuf, size_t cbToWrite, size_t *pcbWritten);
|
---|
537 |
|
---|
538 | /**
|
---|
539 | * Flushes the buffers for the specified file.
|
---|
540 | *
|
---|
541 | * @returns iprt status code.
|
---|
542 | * @param File Handle to the file.
|
---|
543 | */
|
---|
544 | RTDECL(int) RTFileFlush(RTFILE File);
|
---|
545 |
|
---|
546 | /**
|
---|
547 | * Set the size of the file.
|
---|
548 | *
|
---|
549 | * @returns iprt status code.
|
---|
550 | * @param File Handle to the file.
|
---|
551 | * @param cbSize The new file size.
|
---|
552 | */
|
---|
553 | RTDECL(int) RTFileSetSize(RTFILE File, uint64_t cbSize);
|
---|
554 |
|
---|
555 | /**
|
---|
556 | * Query the size of the file.
|
---|
557 | *
|
---|
558 | * @returns iprt status code.
|
---|
559 | * @param File Handle to the file.
|
---|
560 | * @param pcbSize Where to store the filesize.
|
---|
561 | */
|
---|
562 | RTDECL(int) RTFileGetSize(RTFILE File, uint64_t *pcbSize);
|
---|
563 |
|
---|
564 | /**
|
---|
565 | * Determine the maximum file size.
|
---|
566 | *
|
---|
567 | * @returns The max size of the file.
|
---|
568 | * -1 on failure, the file position is undefined.
|
---|
569 | * @param File Handle to the file.
|
---|
570 | * @see RTFileGetMaxSizeEx.
|
---|
571 | */
|
---|
572 | RTDECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
|
---|
573 |
|
---|
574 | /**
|
---|
575 | * Determine the maximum file size.
|
---|
576 | *
|
---|
577 | * @returns IPRT status code.
|
---|
578 | * @param File Handle to the file.
|
---|
579 | * @param pcbMax Where to store the max file size.
|
---|
580 | * @see RTFileGetMaxSize.
|
---|
581 | */
|
---|
582 | RTDECL(int) RTFileGetMaxSizeEx(RTFILE File, PRTFOFF pcbMax);
|
---|
583 |
|
---|
584 | /**
|
---|
585 | * Determine the maximum file size depending on the file system the file is stored on.
|
---|
586 | *
|
---|
587 | * @returns The max size of the file.
|
---|
588 | * -1 on failure.
|
---|
589 | * @param File Handle to the file.
|
---|
590 | */
|
---|
591 | RTDECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
|
---|
592 |
|
---|
593 | /**
|
---|
594 | * Gets the current file position.
|
---|
595 | *
|
---|
596 | * @returns File offset.
|
---|
597 | * @returns ~0UUL on failure.
|
---|
598 | * @param File Handle to the file.
|
---|
599 | */
|
---|
600 | RTDECL(uint64_t) RTFileTell(RTFILE File);
|
---|
601 |
|
---|
602 | /**
|
---|
603 | * Checks if the supplied handle is valid.
|
---|
604 | *
|
---|
605 | * @returns true if valid.
|
---|
606 | * @returns false if invalid.
|
---|
607 | * @param File The file handle
|
---|
608 | */
|
---|
609 | RTDECL(bool) RTFileIsValid(RTFILE File);
|
---|
610 |
|
---|
611 | /**
|
---|
612 | * Copies a file.
|
---|
613 | *
|
---|
614 | * @returns IPRT status code
|
---|
615 | * @retval VERR_ALREADY_EXISTS if the destination file exists.
|
---|
616 | *
|
---|
617 | * @param pszSrc The path to the source file.
|
---|
618 | * @param pszDst The path to the destination file.
|
---|
619 | * This file will be created.
|
---|
620 | */
|
---|
621 | RTDECL(int) RTFileCopy(const char *pszSrc, const char *pszDst);
|
---|
622 |
|
---|
623 | /**
|
---|
624 | * Copies a file given the handles to both files.
|
---|
625 | *
|
---|
626 | * @returns IPRT status code
|
---|
627 | *
|
---|
628 | * @param FileSrc The source file. The file position is unaltered.
|
---|
629 | * @param FileDst The destination file.
|
---|
630 | * On successful returns the file position is at the end of the file.
|
---|
631 | * On failures the file position and size is undefined.
|
---|
632 | */
|
---|
633 | RTDECL(int) RTFileCopyByHandles(RTFILE FileSrc, RTFILE FileDst);
|
---|
634 |
|
---|
635 | /** Flags for RTFileCopyEx().
|
---|
636 | * @{ */
|
---|
637 | /** Do not use RTFILE_O_DENY_WRITE on the source file to allow for copying files opened for writing. */
|
---|
638 | #define RTFILECOPY_FLAGS_NO_SRC_DENY_WRITE RT_BIT(0)
|
---|
639 | /** Do not use RTFILE_O_DENY_WRITE on the target file. */
|
---|
640 | #define RTFILECOPY_FLAGS_NO_DST_DENY_WRITE RT_BIT(1)
|
---|
641 | /** Do not use RTFILE_O_DENY_WRITE on either of the two files. */
|
---|
642 | #define RTFILECOPY_FLAGS_NO_DENY_WRITE ( RTFILECOPY_FLAGS_NO_SRC_DENY_WRITE | RTFILECOPY_FLAGS_NO_DST_DENY_WRITE )
|
---|
643 | /** */
|
---|
644 | #define RTFILECOPY_FLAGS_MASK UINT32_C(0x00000003)
|
---|
645 | /** @} */
|
---|
646 |
|
---|
647 | /**
|
---|
648 | * Copies a file.
|
---|
649 | *
|
---|
650 | * @returns IPRT status code
|
---|
651 | * @retval VERR_ALREADY_EXISTS if the destination file exists.
|
---|
652 | *
|
---|
653 | * @param pszSrc The path to the source file.
|
---|
654 | * @param pszDst The path to the destination file.
|
---|
655 | * This file will be created.
|
---|
656 | * @param fFlags Flags (RTFILECOPY_*).
|
---|
657 | * @param pfnProgress Pointer to callback function for reporting progress.
|
---|
658 | * @param pvUser User argument to pass to pfnProgress along with the completion percentage.
|
---|
659 | */
|
---|
660 | RTDECL(int) RTFileCopyEx(const char *pszSrc, const char *pszDst, uint32_t fFlags, PFNRTPROGRESS pfnProgress, void *pvUser);
|
---|
661 |
|
---|
662 | /**
|
---|
663 | * Copies a file given the handles to both files and
|
---|
664 | * provide progress callbacks.
|
---|
665 | *
|
---|
666 | * @returns IPRT status code.
|
---|
667 | *
|
---|
668 | * @param FileSrc The source file. The file position is unaltered.
|
---|
669 | * @param FileDst The destination file.
|
---|
670 | * On successful returns the file position is at the end of the file.
|
---|
671 | * On failures the file position and size is undefined.
|
---|
672 | * @param pfnProgress Pointer to callback function for reporting progress.
|
---|
673 | * @param pvUser User argument to pass to pfnProgress along with the completion percentage.
|
---|
674 | */
|
---|
675 | RTDECL(int) RTFileCopyByHandlesEx(RTFILE FileSrc, RTFILE FileDst, PFNRTPROGRESS pfnProgress, void *pvUser);
|
---|
676 |
|
---|
677 | /**
|
---|
678 | * Copies a part of a file to another one.
|
---|
679 | *
|
---|
680 | * @returns IPRT status code.
|
---|
681 | * @retval VERR_EOF if @a pcbCopied is NULL and the end-of-file is reached
|
---|
682 | * before @a cbToCopy bytes have been copied.
|
---|
683 | *
|
---|
684 | * @param hFileSrc Handle to the source file. Must be readable.
|
---|
685 | * @param offSrc The source file offset.
|
---|
686 | * @param hFileDst Handle to the destination file. Must be writable and
|
---|
687 | * RTFILE_O_APPEND must be be in effect.
|
---|
688 | * @param offDst The destination file offset.
|
---|
689 | * @param cbToCopy How many bytes to copy.
|
---|
690 | * @param fFlags Reserved for the future, must be zero.
|
---|
691 | * @param pcbCopied Where to return the exact number of bytes copied.
|
---|
692 | * Optional.
|
---|
693 | *
|
---|
694 | * @note The file positions of @a hFileSrc and @a hFileDst are undefined
|
---|
695 | * upon return of this function.
|
---|
696 | *
|
---|
697 | * @sa RTFileCopyPartEx.
|
---|
698 | */
|
---|
699 | RTDECL(int) RTFileCopyPart(RTFILE hFileSrc, RTFOFF offSrc, RTFILE hFileDst, RTFOFF offDst, uint64_t cbToCopy,
|
---|
700 | uint32_t fFlags, uint64_t *pcbCopied);
|
---|
701 |
|
---|
702 |
|
---|
703 | /** Copy buffer state for RTFileCopyPartEx.
|
---|
704 | * @note The fields are considered internal!
|
---|
705 | */
|
---|
706 | typedef struct RTFILECOPYPARTBUFSTATE
|
---|
707 | {
|
---|
708 | /** Magic value (RTFILECOPYPARTBUFSTATE_MAGIC).
|
---|
709 | * @internal */
|
---|
710 | uint32_t uMagic;
|
---|
711 | /** Allocation type (internal).
|
---|
712 | * @internal */
|
---|
713 | int32_t iAllocType;
|
---|
714 | /** Buffer pointer.
|
---|
715 | * @internal */
|
---|
716 | uint8_t *pbBuf;
|
---|
717 | /** Buffer size.
|
---|
718 | * @internal */
|
---|
719 | size_t cbBuf;
|
---|
720 | /** Reserved.
|
---|
721 | * @internal */
|
---|
722 | void *papReserved[3];
|
---|
723 | } RTFILECOPYPARTBUFSTATE;
|
---|
724 | /** Pointer to copy buffer state for RTFileCopyPartEx(). */
|
---|
725 | typedef RTFILECOPYPARTBUFSTATE *PRTFILECOPYPARTBUFSTATE;
|
---|
726 | /** Magic value for the RTFileCopyPartEx() buffer state structure (Stephen John Fry). */
|
---|
727 | #define RTFILECOPYPARTBUFSTATE_MAGIC UINT32_C(0x19570857)
|
---|
728 |
|
---|
729 | /**
|
---|
730 | * Prepares buffer state for one or more RTFileCopyPartEx() calls.
|
---|
731 | *
|
---|
732 | * Caller must call RTFileCopyPartCleanup() after the final RTFileCopyPartEx()
|
---|
733 | * call.
|
---|
734 | *
|
---|
735 | * @returns IPRT status code.
|
---|
736 | * @param pBufState The buffer state to prepare.
|
---|
737 | * @param cbToCopy The number of bytes we typically to copy in one
|
---|
738 | * RTFileCopyPartEx call.
|
---|
739 | */
|
---|
740 | RTDECL(int) RTFileCopyPartPrep(PRTFILECOPYPARTBUFSTATE pBufState, uint64_t cbToCopy);
|
---|
741 |
|
---|
742 | /**
|
---|
743 | * Cleans up after RTFileCopyPartPrep() once the final RTFileCopyPartEx()
|
---|
744 | * call has been made.
|
---|
745 | *
|
---|
746 | * @param pBufState The buffer state to clean up.
|
---|
747 | */
|
---|
748 | RTDECL(void) RTFileCopyPartCleanup(PRTFILECOPYPARTBUFSTATE pBufState);
|
---|
749 |
|
---|
750 | /**
|
---|
751 | * Copies a part of a file to another one, extended version.
|
---|
752 | *
|
---|
753 | * @returns IPRT status code.
|
---|
754 | * @retval VERR_EOF if @a pcbCopied is NULL and the end-of-file is reached
|
---|
755 | * before @a cbToCopy bytes have been copied.
|
---|
756 | *
|
---|
757 | * @param hFileSrc Handle to the source file. Must be readable.
|
---|
758 | * @param offSrc The source file offset.
|
---|
759 | * @param hFileDst Handle to the destination file. Must be writable and
|
---|
760 | * RTFILE_O_APPEND must be be in effect.
|
---|
761 | * @param offDst The destination file offset.
|
---|
762 | * @param cbToCopy How many bytes to copy.
|
---|
763 | * @param fFlags Reserved for the future, must be zero.
|
---|
764 | * @param pBufState Copy buffer state prepared by RTFileCopyPartPrep().
|
---|
765 | * @param pcbCopied Where to return the exact number of bytes copied.
|
---|
766 | * Optional.
|
---|
767 | *
|
---|
768 | * @note The file positions of @a hFileSrc and @a hFileDst are undefined
|
---|
769 | * upon return of this function.
|
---|
770 | *
|
---|
771 | * @sa RTFileCopyPart.
|
---|
772 | */
|
---|
773 | RTDECL(int) RTFileCopyPartEx(RTFILE hFileSrc, RTFOFF offSrc, RTFILE hFileDst, RTFOFF offDst, uint64_t cbToCopy,
|
---|
774 | uint32_t fFlags, PRTFILECOPYPARTBUFSTATE pBufState, uint64_t *pcbCopied);
|
---|
775 |
|
---|
776 | /**
|
---|
777 | * Copy file attributes from @a hFileSrc to @a hFileDst.
|
---|
778 | *
|
---|
779 | * @returns IPRT status code.
|
---|
780 | * @param hFileSrc Handle to the source file.
|
---|
781 | * @param hFileDst Handle to the destination file.
|
---|
782 | * @param fFlags Reserved, pass zero.
|
---|
783 | */
|
---|
784 | RTDECL(int) RTFileCopyAttributes(RTFILE hFileSrc, RTFILE hFileDst, uint32_t fFlags);
|
---|
785 |
|
---|
786 | /**
|
---|
787 | * Compares two file given the paths to both files.
|
---|
788 | *
|
---|
789 | * @returns IPRT status code.
|
---|
790 | * @retval VINF_SUCCESS if equal.
|
---|
791 | * @retval VERR_NOT_EQUAL if not equal.
|
---|
792 | *
|
---|
793 | * @param pszFile1 The path to the first file.
|
---|
794 | * @param pszFile2 The path to the second file.
|
---|
795 | */
|
---|
796 | RTDECL(int) RTFileCompare(const char *pszFile1, const char *pszFile2);
|
---|
797 |
|
---|
798 | /**
|
---|
799 | * Compares two file given the handles to both files.
|
---|
800 | *
|
---|
801 | * @returns IPRT status code.
|
---|
802 | * @retval VINF_SUCCESS if equal.
|
---|
803 | * @retval VERR_NOT_EQUAL if not equal.
|
---|
804 | *
|
---|
805 | * @param hFile1 The first file. Undefined return position.
|
---|
806 | * @param hFile2 The second file. Undefined return position.
|
---|
807 | */
|
---|
808 | RTDECL(int) RTFileCompareByHandles(RTFILE hFile1, RTFILE hFile2);
|
---|
809 |
|
---|
810 | /** Flags for RTFileCompareEx().
|
---|
811 | * @{ */
|
---|
812 | /** Do not use RTFILE_O_DENY_WRITE on the first file. */
|
---|
813 | #define RTFILECOMP_FLAGS_NO_DENY_WRITE_FILE1 RT_BIT(0)
|
---|
814 | /** Do not use RTFILE_O_DENY_WRITE on the second file. */
|
---|
815 | #define RTFILECOMP_FLAGS_NO_DENY_WRITE_FILE2 RT_BIT(1)
|
---|
816 | /** Do not use RTFILE_O_DENY_WRITE on either of the two files. */
|
---|
817 | #define RTFILECOMP_FLAGS_NO_DENY_WRITE ( RTFILECOMP_FLAGS_NO_DENY_WRITE_FILE1 | RTFILECOMP_FLAGS_NO_DENY_WRITE_FILE2 )
|
---|
818 | /** */
|
---|
819 | #define RTFILECOMP_FLAGS_MASK UINT32_C(0x00000003)
|
---|
820 | /** @} */
|
---|
821 |
|
---|
822 | /**
|
---|
823 | * Compares two files, extended version with progress callback.
|
---|
824 | *
|
---|
825 | * @returns IPRT status code.
|
---|
826 | * @retval VINF_SUCCESS if equal.
|
---|
827 | * @retval VERR_NOT_EQUAL if not equal.
|
---|
828 | *
|
---|
829 | * @param pszFile1 The path to the source file.
|
---|
830 | * @param pszFile2 The path to the destination file. This file will be
|
---|
831 | * created.
|
---|
832 | * @param fFlags Flags, any of the RTFILECOMP_FLAGS_ \#defines.
|
---|
833 | * @param pfnProgress Pointer to callback function for reporting progress.
|
---|
834 | * @param pvUser User argument to pass to pfnProgress along with the completion percentage.
|
---|
835 | */
|
---|
836 | RTDECL(int) RTFileCompareEx(const char *pszFile1, const char *pszFile2, uint32_t fFlags, PFNRTPROGRESS pfnProgress, void *pvUser);
|
---|
837 |
|
---|
838 | /**
|
---|
839 | * Compares two files given their handles, extended version with progress
|
---|
840 | * callback.
|
---|
841 | *
|
---|
842 | * @returns IPRT status code.
|
---|
843 | * @retval VINF_SUCCESS if equal.
|
---|
844 | * @retval VERR_NOT_EQUAL if not equal.
|
---|
845 | *
|
---|
846 | * @param hFile1 The first file. Undefined return position.
|
---|
847 | * @param hFile2 The second file. Undefined return position.
|
---|
848 | *
|
---|
849 | * @param fFlags Flags, any of the RTFILECOMP_FLAGS_ \#defines, flags
|
---|
850 | * related to opening of the files will be ignored.
|
---|
851 | * @param pfnProgress Pointer to callback function for reporting progress.
|
---|
852 | * @param pvUser User argument to pass to pfnProgress along with the completion percentage.
|
---|
853 | */
|
---|
854 | RTDECL(int) RTFileCompareByHandlesEx(RTFILE hFile1, RTFILE hFile2, uint32_t fFlags, PFNRTPROGRESS pfnProgress, void *pvUser);
|
---|
855 |
|
---|
856 | /**
|
---|
857 | * Renames a file.
|
---|
858 | *
|
---|
859 | * Identical to RTPathRename except that it will ensure that the source is not a directory.
|
---|
860 | *
|
---|
861 | * @returns IPRT status code.
|
---|
862 | * @returns VERR_ALREADY_EXISTS if the destination file exists.
|
---|
863 | *
|
---|
864 | * @param pszSrc The path to the source file.
|
---|
865 | * @param pszDst The path to the destination file.
|
---|
866 | * This file will be created.
|
---|
867 | * @param fRename See RTPathRename.
|
---|
868 | */
|
---|
869 | RTDECL(int) RTFileRename(const char *pszSrc, const char *pszDst, unsigned fRename);
|
---|
870 |
|
---|
871 |
|
---|
872 | /** @name RTFileMove flags (bit masks).
|
---|
873 | * @{ */
|
---|
874 | /** Replace destination file if present. */
|
---|
875 | #define RTFILEMOVE_FLAGS_REPLACE 0x1
|
---|
876 | /** Don't allow symbolic links as part of the path.
|
---|
877 | * @remarks this flag is currently not implemented and will be ignored. */
|
---|
878 | #define RTFILEMOVE_FLAGS_NO_SYMLINKS 0x2
|
---|
879 | /** @} */
|
---|
880 |
|
---|
881 | /**
|
---|
882 | * Converts file opening modes (used by fopen, for example) to IPRT
|
---|
883 | * compatible flags, which then can be used with RTFileOpen* APIs.
|
---|
884 | *
|
---|
885 | * @note Handling sharing modes is not supported yet, so RTFILE_O_DENY_NONE
|
---|
886 | * will always be used.
|
---|
887 | *
|
---|
888 | * @return IPRT status code.
|
---|
889 | * @param pszMode Mode string to convert.
|
---|
890 | * @param pfMode Where to store the converted mode flags on
|
---|
891 | * success.
|
---|
892 | */
|
---|
893 | RTDECL(int) RTFileModeToFlags(const char *pszMode, uint64_t *pfMode);
|
---|
894 |
|
---|
895 | /**
|
---|
896 | * Converts file opening modes along with a separate disposition command
|
---|
897 | * to IPRT compatible flags, which then can be used with RTFileOpen* APIs.
|
---|
898 | *
|
---|
899 | * Access modes:
|
---|
900 | * - "r": Opens a file for reading.
|
---|
901 | * - "r+": Opens a file for reading and writing.
|
---|
902 | * - "w": Opens a file for writing.
|
---|
903 | * - "w+": Opens a file for writing and reading.
|
---|
904 | *
|
---|
905 | * Disposition modes:
|
---|
906 | * - "oe", "open": Opens an existing file or fail if it does not exist.
|
---|
907 | * - "oc", "open-create": Opens an existing file or create it if it does
|
---|
908 | * not exist.
|
---|
909 | * - "oa", "open-append": Opens an existing file and places the file
|
---|
910 | * pointer at the end of the file, if opened with write access. Create
|
---|
911 | * the file if it does not exist.
|
---|
912 | * - "ot", "open-truncate": Opens and truncate an existing file or fail if
|
---|
913 | * it does not exist.
|
---|
914 | * - "ce", "create": Creates a new file if it does not exist. Fail if
|
---|
915 | * exist.
|
---|
916 | * - "ca", "create-replace": Creates a new file, always. Overwrites an
|
---|
917 | * existing file.
|
---|
918 | *
|
---|
919 | * Sharing mode:
|
---|
920 | * - "nr": Deny read.
|
---|
921 | * - "nw": Deny write.
|
---|
922 | * - "nrw": Deny both read and write.
|
---|
923 | * - "d": Allow delete.
|
---|
924 | * - "", NULL: Deny none, except delete.
|
---|
925 | *
|
---|
926 | * @return IPRT status code.
|
---|
927 | * @param pszAccess Access mode string to convert.
|
---|
928 | * @param pszDisposition Disposition mode string to convert.
|
---|
929 | * @param pszSharing Sharing mode string to convert.
|
---|
930 | * @param pfMode Where to store the converted mode flags on success.
|
---|
931 | */
|
---|
932 | RTDECL(int) RTFileModeToFlagsEx(const char *pszAccess, const char *pszDisposition, const char *pszSharing, uint64_t *pfMode);
|
---|
933 |
|
---|
934 | /**
|
---|
935 | * Moves a file.
|
---|
936 | *
|
---|
937 | * RTFileMove differs from RTFileRename in that it works across volumes.
|
---|
938 | *
|
---|
939 | * @returns IPRT status code.
|
---|
940 | * @returns VERR_ALREADY_EXISTS if the destination file exists.
|
---|
941 | *
|
---|
942 | * @param pszSrc The path to the source file.
|
---|
943 | * @param pszDst The path to the destination file.
|
---|
944 | * This file will be created.
|
---|
945 | * @param fMove A combination of the RTFILEMOVE_* flags.
|
---|
946 | */
|
---|
947 | RTDECL(int) RTFileMove(const char *pszSrc, const char *pszDst, unsigned fMove);
|
---|
948 |
|
---|
949 |
|
---|
950 | /**
|
---|
951 | * Creates a new file with a unique name using the given template.
|
---|
952 | *
|
---|
953 | * One or more trailing X'es in the template will be replaced by random alpha
|
---|
954 | * numeric characters until a RTFileOpen with RTFILE_O_CREATE succeeds or we
|
---|
955 | * run out of patience.
|
---|
956 | * For instance:
|
---|
957 | * "/tmp/myprog-XXXXXX"
|
---|
958 | *
|
---|
959 | * As an alternative to trailing X'es, it is possible to put 3 or more X'es
|
---|
960 | * somewhere inside the file name. In the following string only the last
|
---|
961 | * bunch of X'es will be modified:
|
---|
962 | * "/tmp/myprog-XXX-XXX.tmp"
|
---|
963 | *
|
---|
964 | * @returns iprt status code.
|
---|
965 | * @param pszTemplate The file name template on input. The actual file
|
---|
966 | * name on success. Empty string on failure.
|
---|
967 | * @param fMode The mode to create the file with. Use 0600 unless
|
---|
968 | * you have reason not to.
|
---|
969 | */
|
---|
970 | RTDECL(int) RTFileCreateTemp(char *pszTemplate, RTFMODE fMode);
|
---|
971 |
|
---|
972 | /**
|
---|
973 | * Secure version of @a RTFileCreateTemp with a fixed mode of 0600.
|
---|
974 | *
|
---|
975 | * This function behaves in the same way as @a RTFileCreateTemp with two
|
---|
976 | * additional points. Firstly the mode is fixed to 0600. Secondly it will
|
---|
977 | * fail if it is not possible to perform the operation securely. Possible
|
---|
978 | * reasons include that the file could be removed by another unprivileged
|
---|
979 | * user before it is used (e.g. if is created in a non-sticky /tmp directory)
|
---|
980 | * or that the path contains symbolic links which another unprivileged user
|
---|
981 | * could manipulate; however the exact criteria will be specified on a
|
---|
982 | * platform-by-platform basis as platform support is added.
|
---|
983 | * @see RTPathIsSecure for the current list of criteria.
|
---|
984 | * @returns iprt status code.
|
---|
985 | * @returns VERR_NOT_SUPPORTED if the interface can not be supported on the
|
---|
986 | * current platform at this time.
|
---|
987 | * @returns VERR_INSECURE if the file could not be created securely.
|
---|
988 | * @param pszTemplate The file name template on input. The actual
|
---|
989 | * file name on success. Empty string on failure.
|
---|
990 | */
|
---|
991 | RTDECL(int) RTFileCreateTempSecure(char *pszTemplate);
|
---|
992 |
|
---|
993 | /**
|
---|
994 | * Opens a new file with a unique name in the temp directory.
|
---|
995 | *
|
---|
996 | * Unlike the other temp file creation APIs, this does not allow you any control
|
---|
997 | * over the name. Nor do you have to figure out where the temporary directory
|
---|
998 | * is.
|
---|
999 | *
|
---|
1000 | * @returns iprt status code.
|
---|
1001 | * @param phFile Where to return the handle to the file.
|
---|
1002 | * @param pszFilename Where to return the name (+path) of the file .
|
---|
1003 | * @param cbFilename The size of the buffer @a pszFilename points to.
|
---|
1004 | * @param fOpen The RTFILE_O_XXX flags to open the file with.
|
---|
1005 | *
|
---|
1006 | * @remarks If actual control over the filename or location is required, we'll
|
---|
1007 | * create an extended edition of this API.
|
---|
1008 | */
|
---|
1009 | RTDECL(int) RTFileOpenTemp(PRTFILE phFile, char *pszFilename, size_t cbFilename, uint64_t fOpen);
|
---|
1010 |
|
---|
1011 |
|
---|
1012 | /** @page pg_rt_filelock RT File locking API description
|
---|
1013 | *
|
---|
1014 | * File locking general rules:
|
---|
1015 | *
|
---|
1016 | * Region to lock or unlock can be located beyond the end of file, this can be used for
|
---|
1017 | * growing files.
|
---|
1018 | * Read (or Shared) locks can be acquired held by an unlimited number of processes at the
|
---|
1019 | * same time, but a Write (or Exclusive) lock can only be acquired by one process, and
|
---|
1020 | * cannot coexist with a Shared lock. To acquire a Read lock, a process must wait until
|
---|
1021 | * there are no processes holding any Write locks. To acquire a Write lock, a process must
|
---|
1022 | * wait until there are no processes holding either kind of lock.
|
---|
1023 | * By default, RTFileLock and RTFileChangeLock calls returns error immediately if the lock
|
---|
1024 | * can't be acquired due to conflict with other locks, however they can be called in wait mode.
|
---|
1025 | *
|
---|
1026 | * Differences in implementation:
|
---|
1027 | *
|
---|
1028 | * Win32, OS/2: Locking is mandatory, since locks are enforced by the operating system.
|
---|
1029 | * I.e. when file region is locked in Read mode, any write in it will fail; in case of Write
|
---|
1030 | * lock - region can be read and writed only by lock's owner.
|
---|
1031 | *
|
---|
1032 | * Win32: File size change (RTFileSetSize) is not controlled by locking at all (!) in the
|
---|
1033 | * operation system. Also see comments to RTFileChangeLock API call.
|
---|
1034 | *
|
---|
1035 | * Linux/Posix: By default locks in Unixes are advisory. This means that cooperating processes
|
---|
1036 | * may use locks to coordinate access to a file between themselves, but programs are also free
|
---|
1037 | * to ignore locks and access the file in any way they choose to.
|
---|
1038 | *
|
---|
1039 | * Additional reading:
|
---|
1040 | * http://en.wikipedia.org/wiki/File_locking
|
---|
1041 | * http://unixhelp.ed.ac.uk/CGI/man-cgi?fcntl+2
|
---|
1042 | * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/lockfileex.asp
|
---|
1043 | */
|
---|
1044 |
|
---|
1045 | /** @name Lock flags (bit masks).
|
---|
1046 | * @{ */
|
---|
1047 | /** Read access, can be shared with others. */
|
---|
1048 | #define RTFILE_LOCK_READ 0x00
|
---|
1049 | /** Write access, one at a time. */
|
---|
1050 | #define RTFILE_LOCK_WRITE 0x01
|
---|
1051 | /** Don't wait for other locks to be released. */
|
---|
1052 | #define RTFILE_LOCK_IMMEDIATELY 0x00
|
---|
1053 | /** Wait till conflicting locks have been released. */
|
---|
1054 | #define RTFILE_LOCK_WAIT 0x02
|
---|
1055 | /** Valid flags mask */
|
---|
1056 | #define RTFILE_LOCK_MASK 0x03
|
---|
1057 | /** @} */
|
---|
1058 |
|
---|
1059 |
|
---|
1060 | /**
|
---|
1061 | * Locks a region of file for read (shared) or write (exclusive) access.
|
---|
1062 | *
|
---|
1063 | * @returns iprt status code.
|
---|
1064 | * @returns VERR_FILE_LOCK_VIOLATION if lock can't be acquired.
|
---|
1065 | * @param File Handle to the file.
|
---|
1066 | * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
|
---|
1067 | * @param offLock Offset of lock start.
|
---|
1068 | * @param cbLock Length of region to lock, may overlap the end of file.
|
---|
1069 | */
|
---|
1070 | RTDECL(int) RTFileLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
|
---|
1071 |
|
---|
1072 | /**
|
---|
1073 | * Changes a lock type from read to write or from write to read.
|
---|
1074 | * The region to type change must correspond exactly to an existing locked region.
|
---|
1075 | * If change can't be done due to locking conflict and non-blocking mode is used, error is
|
---|
1076 | * returned and lock keeps its state (see next warning).
|
---|
1077 | *
|
---|
1078 | * WARNING: win32 implementation of this call is not atomic, it transforms to a pair of
|
---|
1079 | * calls RTFileUnlock and RTFileLock. Potentially the previously acquired lock can be
|
---|
1080 | * lost, i.e. function is called in non-blocking mode, previous lock is freed, new lock can't
|
---|
1081 | * be acquired, and old lock (previous state) can't be acquired back too. This situation
|
---|
1082 | * may occurs _only_ if the other process is acquiring a _write_ lock in blocking mode or
|
---|
1083 | * in race condition with the current call.
|
---|
1084 | * In this very bad case special error code VERR_FILE_LOCK_LOST will be returned.
|
---|
1085 | *
|
---|
1086 | * @returns iprt status code.
|
---|
1087 | * @returns VERR_FILE_NOT_LOCKED if region was not locked.
|
---|
1088 | * @returns VERR_FILE_LOCK_VIOLATION if lock type can't be changed, lock remains its type.
|
---|
1089 | * @returns VERR_FILE_LOCK_LOST if lock was lost, we haven't this lock anymore :(
|
---|
1090 | * @param File Handle to the file.
|
---|
1091 | * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
|
---|
1092 | * @param offLock Offset of lock start.
|
---|
1093 | * @param cbLock Length of region to lock, may overlap the end of file.
|
---|
1094 | */
|
---|
1095 | RTDECL(int) RTFileChangeLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
|
---|
1096 |
|
---|
1097 | /**
|
---|
1098 | * Unlocks previously locked region of file.
|
---|
1099 | * The region to unlock must correspond exactly to an existing locked region.
|
---|
1100 | *
|
---|
1101 | * @returns iprt status code.
|
---|
1102 | * @returns VERR_FILE_NOT_LOCKED if region was not locked.
|
---|
1103 | * @param File Handle to the file.
|
---|
1104 | * @param offLock Offset of lock start.
|
---|
1105 | * @param cbLock Length of region to unlock, may overlap the end of file.
|
---|
1106 | */
|
---|
1107 | RTDECL(int) RTFileUnlock(RTFILE File, int64_t offLock, uint64_t cbLock);
|
---|
1108 |
|
---|
1109 |
|
---|
1110 | /**
|
---|
1111 | * Query information about an open file.
|
---|
1112 | *
|
---|
1113 | * @returns iprt status code.
|
---|
1114 | *
|
---|
1115 | * @param File Handle to the file.
|
---|
1116 | * @param pObjInfo Object information structure to be filled on successful return.
|
---|
1117 | * @param enmAdditionalAttribs Which set of additional attributes to request.
|
---|
1118 | * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
|
---|
1119 | */
|
---|
1120 | RTDECL(int) RTFileQueryInfo(RTFILE File, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
|
---|
1121 |
|
---|
1122 | /**
|
---|
1123 | * Changes one or more of the timestamps associated of file system object.
|
---|
1124 | *
|
---|
1125 | * @returns iprt status code.
|
---|
1126 | * @retval VERR_NOT_SUPPORTED is returned if the operation isn't supported by
|
---|
1127 | * the OS.
|
---|
1128 | *
|
---|
1129 | * @param File Handle to the file.
|
---|
1130 | * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
|
---|
1131 | * @param pModificationTime Pointer to the new modifcation time. NULL if not to be changed.
|
---|
1132 | * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
|
---|
1133 | * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
|
---|
1134 | *
|
---|
1135 | * @remark The file system might not implement all these time attributes,
|
---|
1136 | * the API will ignore the ones which aren't supported.
|
---|
1137 | *
|
---|
1138 | * @remark The file system might not implement the time resolution
|
---|
1139 | * employed by this interface, the time will be chopped to fit.
|
---|
1140 | *
|
---|
1141 | * @remark The file system may update the change time even if it's
|
---|
1142 | * not specified.
|
---|
1143 | *
|
---|
1144 | * @remark POSIX can only set Access & Modification and will always set both.
|
---|
1145 | */
|
---|
1146 | RTDECL(int) RTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
|
---|
1147 | PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
|
---|
1148 |
|
---|
1149 | /**
|
---|
1150 | * Gets one or more of the timestamps associated of file system object.
|
---|
1151 | *
|
---|
1152 | * @returns iprt status code.
|
---|
1153 | * @param File Handle to the file.
|
---|
1154 | * @param pAccessTime Where to store the access time. NULL is ok.
|
---|
1155 | * @param pModificationTime Where to store the modifcation time. NULL is ok.
|
---|
1156 | * @param pChangeTime Where to store the change time. NULL is ok.
|
---|
1157 | * @param pBirthTime Where to store the time of birth. NULL is ok.
|
---|
1158 | *
|
---|
1159 | * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileSetTimes().
|
---|
1160 | */
|
---|
1161 | RTDECL(int) RTFileGetTimes(RTFILE File, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
|
---|
1162 | PRTTIMESPEC pChangeTime, PRTTIMESPEC pBirthTime);
|
---|
1163 |
|
---|
1164 | /**
|
---|
1165 | * Changes the mode flags of an open file.
|
---|
1166 | *
|
---|
1167 | * The API requires at least one of the mode flag sets (Unix/Dos) to
|
---|
1168 | * be set. The type is ignored.
|
---|
1169 | *
|
---|
1170 | * @returns iprt status code.
|
---|
1171 | * @param File Handle to the file.
|
---|
1172 | * @param fMode The new file mode, see @ref grp_rt_fs for details.
|
---|
1173 | */
|
---|
1174 | RTDECL(int) RTFileSetMode(RTFILE File, RTFMODE fMode);
|
---|
1175 |
|
---|
1176 | /**
|
---|
1177 | * Gets the mode flags of an open file.
|
---|
1178 | *
|
---|
1179 | * @returns iprt status code.
|
---|
1180 | * @param File Handle to the file.
|
---|
1181 | * @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
|
---|
1182 | *
|
---|
1183 | * @remark This is wrapper around RTFileQueryInfo()
|
---|
1184 | * and exists to complement RTFileSetMode().
|
---|
1185 | */
|
---|
1186 | RTDECL(int) RTFileGetMode(RTFILE File, uint32_t *pfMode);
|
---|
1187 |
|
---|
1188 | /**
|
---|
1189 | * Changes the owner and/or group of an open file.
|
---|
1190 | *
|
---|
1191 | * @returns iprt status code.
|
---|
1192 | * @param File Handle to the file.
|
---|
1193 | * @param uid The new file owner user id. Pass NIL_RTUID to leave
|
---|
1194 | * this unchanged.
|
---|
1195 | * @param gid The new group id. Pass NIL_RTGID to leave this
|
---|
1196 | * unchanged.
|
---|
1197 | */
|
---|
1198 | RTDECL(int) RTFileSetOwner(RTFILE File, uint32_t uid, uint32_t gid);
|
---|
1199 |
|
---|
1200 | /**
|
---|
1201 | * Gets the owner and/or group of an open file.
|
---|
1202 | *
|
---|
1203 | * @returns iprt status code.
|
---|
1204 | * @param File Handle to the file.
|
---|
1205 | * @param pUid Where to store the owner user id. NULL is ok.
|
---|
1206 | * @param pGid Where to store the group id. NULL is ok.
|
---|
1207 | *
|
---|
1208 | * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileGetOwner().
|
---|
1209 | */
|
---|
1210 | RTDECL(int) RTFileGetOwner(RTFILE File, uint32_t *pUid, uint32_t *pGid);
|
---|
1211 |
|
---|
1212 | /**
|
---|
1213 | * Executes an IOCTL on a file descriptor.
|
---|
1214 | *
|
---|
1215 | * This function is currently only available in L4 and posix environments.
|
---|
1216 | * Attemps at calling it from code shared with any other platforms will break things!
|
---|
1217 | *
|
---|
1218 | * The rational for defining this API is to simplify L4 porting of audio drivers,
|
---|
1219 | * and to remove some of the assumptions on RTFILE being a file descriptor on
|
---|
1220 | * platforms using the posix file implementation.
|
---|
1221 | *
|
---|
1222 | * @returns iprt status code.
|
---|
1223 | * @param File Handle to the file.
|
---|
1224 | * @param ulRequest IOCTL request to carry out.
|
---|
1225 | * @param pvData IOCTL data.
|
---|
1226 | * @param cbData Size of the IOCTL data.
|
---|
1227 | * @param piRet Return value of the IOCTL request.
|
---|
1228 | */
|
---|
1229 | RTDECL(int) RTFileIoCtl(RTFILE File, unsigned long ulRequest, void *pvData, unsigned cbData, int *piRet);
|
---|
1230 |
|
---|
1231 | /**
|
---|
1232 | * Query the sizes of a filesystem.
|
---|
1233 | *
|
---|
1234 | * @returns iprt status code.
|
---|
1235 | * @retval VERR_NOT_SUPPORTED is returned if the operation isn't supported by
|
---|
1236 | * the OS.
|
---|
1237 | *
|
---|
1238 | * @param hFile The file handle.
|
---|
1239 | * @param pcbTotal Where to store the total filesystem space. (Optional)
|
---|
1240 | * @param pcbFree Where to store the remaining free space in the filesystem. (Optional)
|
---|
1241 | * @param pcbBlock Where to store the block size. (Optional)
|
---|
1242 | * @param pcbSector Where to store the sector size. (Optional)
|
---|
1243 | *
|
---|
1244 | * @sa RTFsQuerySizes
|
---|
1245 | */
|
---|
1246 | RTDECL(int) RTFileQueryFsSizes(RTFILE hFile, PRTFOFF pcbTotal, RTFOFF *pcbFree,
|
---|
1247 | uint32_t *pcbBlock, uint32_t *pcbSector);
|
---|
1248 |
|
---|
1249 | /**
|
---|
1250 | * Reads the file into memory.
|
---|
1251 | *
|
---|
1252 | * The caller must free the memory using RTFileReadAllFree().
|
---|
1253 | *
|
---|
1254 | * @returns IPRT status code.
|
---|
1255 | * @param pszFilename The name of the file.
|
---|
1256 | * @param ppvFile Where to store the pointer to the memory on successful return.
|
---|
1257 | * @param pcbFile Where to store the size of the returned memory.
|
---|
1258 | *
|
---|
1259 | * @remarks Note that this function may be implemented using memory mapping, which means
|
---|
1260 | * that the file may remain open until RTFileReadAllFree() is called. It also
|
---|
1261 | * means that the return memory may reflect the state of the file when it's
|
---|
1262 | * accessed instead of when this call was done. So, in short, don't use this
|
---|
1263 | * API for volatile files, then rather use the extended variant with a
|
---|
1264 | * yet-to-be-defined flag.
|
---|
1265 | */
|
---|
1266 | RTDECL(int) RTFileReadAll(const char *pszFilename, void **ppvFile, size_t *pcbFile);
|
---|
1267 |
|
---|
1268 | /**
|
---|
1269 | * Reads the file into memory.
|
---|
1270 | *
|
---|
1271 | * The caller must free the memory using RTFileReadAllFree().
|
---|
1272 | *
|
---|
1273 | * @returns IPRT status code.
|
---|
1274 | * @param pszFilename The name of the file.
|
---|
1275 | * @param off The offset to start reading at.
|
---|
1276 | * @param cbMax The maximum number of bytes to read into memory. Specify RTFOFF_MAX
|
---|
1277 | * to read to the end of the file.
|
---|
1278 | * @param fFlags See RTFILE_RDALL_*.
|
---|
1279 | * @param ppvFile Where to store the pointer to the memory on successful return.
|
---|
1280 | * @param pcbFile Where to store the size of the returned memory.
|
---|
1281 | *
|
---|
1282 | * @remarks See the remarks for RTFileReadAll.
|
---|
1283 | */
|
---|
1284 | RTDECL(int) RTFileReadAllEx(const char *pszFilename, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile);
|
---|
1285 |
|
---|
1286 | /**
|
---|
1287 | * Reads the file into memory.
|
---|
1288 | *
|
---|
1289 | * The caller must free the memory using RTFileReadAllFree().
|
---|
1290 | *
|
---|
1291 | * @returns IPRT status code.
|
---|
1292 | * @param File The handle to the file.
|
---|
1293 | * @param ppvFile Where to store the pointer to the memory on successful return.
|
---|
1294 | * @param pcbFile Where to store the size of the returned memory.
|
---|
1295 | *
|
---|
1296 | * @remarks See the remarks for RTFileReadAll.
|
---|
1297 | */
|
---|
1298 | RTDECL(int) RTFileReadAllByHandle(RTFILE File, void **ppvFile, size_t *pcbFile);
|
---|
1299 |
|
---|
1300 | /**
|
---|
1301 | * Reads the file into memory.
|
---|
1302 | *
|
---|
1303 | * The caller must free the memory using RTFileReadAllFree().
|
---|
1304 | *
|
---|
1305 | * @returns IPRT status code.
|
---|
1306 | * @param File The handle to the file.
|
---|
1307 | * @param off The offset to start reading at.
|
---|
1308 | * @param cbMax The maximum number of bytes to read into memory. Specify RTFOFF_MAX
|
---|
1309 | * to read to the end of the file.
|
---|
1310 | * @param fFlags See RTFILE_RDALL_*.
|
---|
1311 | * @param ppvFile Where to store the pointer to the memory on successful return.
|
---|
1312 | * @param pcbFile Where to store the size of the returned memory.
|
---|
1313 | *
|
---|
1314 | * @remarks See the remarks for RTFileReadAll.
|
---|
1315 | */
|
---|
1316 | RTDECL(int) RTFileReadAllByHandleEx(RTFILE File, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile);
|
---|
1317 |
|
---|
1318 | /**
|
---|
1319 | * Frees the memory returned by one of the RTFileReadAll(), RTFileReadAllEx(),
|
---|
1320 | * RTFileReadAllByHandle() and RTFileReadAllByHandleEx() functions.
|
---|
1321 | *
|
---|
1322 | * @param pvFile Pointer to the memory.
|
---|
1323 | * @param cbFile The size of the memory.
|
---|
1324 | */
|
---|
1325 | RTDECL(void) RTFileReadAllFree(void *pvFile, size_t cbFile);
|
---|
1326 |
|
---|
1327 | /** @name RTFileReadAllEx and RTFileReadAllHandleEx flags
|
---|
1328 | * The open flags are ignored by RTFileReadAllHandleEx.
|
---|
1329 | * @{ */
|
---|
1330 | #define RTFILE_RDALL_O_DENY_NONE RTFILE_O_DENY_NONE
|
---|
1331 | #define RTFILE_RDALL_O_DENY_READ RTFILE_O_DENY_READ
|
---|
1332 | #define RTFILE_RDALL_O_DENY_WRITE RTFILE_O_DENY_WRITE
|
---|
1333 | #define RTFILE_RDALL_O_DENY_READWRITE RTFILE_O_DENY_READWRITE
|
---|
1334 | #define RTFILE_RDALL_O_DENY_ALL RTFILE_O_DENY_ALL
|
---|
1335 | #define RTFILE_RDALL_O_DENY_NOT_DELETE RTFILE_O_DENY_NOT_DELETE
|
---|
1336 | #define RTFILE_RDALL_O_DENY_MASK RTFILE_O_DENY_MASK
|
---|
1337 | /** Fail with VERR_OUT_OF_RANGE if the file size exceeds the specified maximum
|
---|
1338 | * size. The default behavior is to cap the size at cbMax. */
|
---|
1339 | #define RTFILE_RDALL_F_FAIL_ON_MAX_SIZE RT_BIT_32(30)
|
---|
1340 | /** Add a trailing zero byte to facilitate reading text files. */
|
---|
1341 | #define RTFILE_RDALL_F_TRAILING_ZERO_BYTE RT_BIT_32(31)
|
---|
1342 | /** Mask of valid flags. */
|
---|
1343 | #define RTFILE_RDALL_VALID_MASK (RTFILE_RDALL_O_DENY_MASK | UINT32_C(0xc0000000))
|
---|
1344 | /** @} */
|
---|
1345 |
|
---|
1346 | /**
|
---|
1347 | * Sets the current size of the file ensuring that all required blocks
|
---|
1348 | * are allocated on the underlying medium.
|
---|
1349 | *
|
---|
1350 | * @returns IPRT status code.
|
---|
1351 | * @retval VERR_NOT_SUPPORTED if either this operation is not supported on the
|
---|
1352 | * current host in an efficient manner or the given combination of
|
---|
1353 | * flags is not supported.
|
---|
1354 | * @param hFile The handle to the file.
|
---|
1355 | * @param cbSize The new size of the file to allocate.
|
---|
1356 | * @param fFlags Combination of RTFILE_ALLOC_SIZE_F_*
|
---|
1357 | */
|
---|
1358 | RTDECL(int) RTFileSetAllocationSize(RTFILE hFile, uint64_t cbSize, uint32_t fFlags);
|
---|
1359 |
|
---|
1360 | /** @name RTFILE_ALLOC_SIZE_F_XXX - RTFileSetAllocationSize flags
|
---|
1361 | * @{ */
|
---|
1362 | /** Default flags. */
|
---|
1363 | #define RTFILE_ALLOC_SIZE_F_DEFAULT 0
|
---|
1364 | /** Do not change the size of the file if the given size is bigger than the
|
---|
1365 | * current file size.
|
---|
1366 | *
|
---|
1367 | * Useful to preallocate blocks beyond the current size for appending data in an
|
---|
1368 | * efficient manner. Might not be supported on all hosts and will return
|
---|
1369 | * VERR_NOT_SUPPORTED in that case. */
|
---|
1370 | #define RTFILE_ALLOC_SIZE_F_KEEP_SIZE RT_BIT(0)
|
---|
1371 | /** Mask of valid flags. */
|
---|
1372 | #define RTFILE_ALLOC_SIZE_F_VALID (RTFILE_ALLOC_SIZE_F_KEEP_SIZE)
|
---|
1373 | /** @} */
|
---|
1374 |
|
---|
1375 |
|
---|
1376 | #ifdef IN_RING3
|
---|
1377 |
|
---|
1378 | /** @page pg_rt_asyncio RT File async I/O API
|
---|
1379 | *
|
---|
1380 | * File operations are usually blocking the calling thread until
|
---|
1381 | * they completed making it impossible to let the thread do anything
|
---|
1382 | * else in-between.
|
---|
1383 | * The RT File async I/O API provides an easy and efficient way to
|
---|
1384 | * access files asynchronously using the native facilities provided
|
---|
1385 | * by each operating system.
|
---|
1386 | *
|
---|
1387 | * @section sec_rt_asyncio_objects Objects
|
---|
1388 | *
|
---|
1389 | * There are two objects used in this API.
|
---|
1390 | * The first object is the request. A request contains every information
|
---|
1391 | * needed two complete the file operation successfully like the start offset
|
---|
1392 | * and pointer to the source or destination buffer.
|
---|
1393 | * Requests are created with RTFileAioReqCreate() and destroyed with
|
---|
1394 | * RTFileAioReqDestroy().
|
---|
1395 | * Because creating a request may require allocating various operating
|
---|
1396 | * system dependent resources and may be quite expensive it is possible
|
---|
1397 | * to use a request more than once to save CPU cycles.
|
---|
1398 | * A request is constructed with either RTFileAioReqPrepareRead()
|
---|
1399 | * which will set up a request to read from the given file or
|
---|
1400 | * RTFileAioReqPrepareWrite() which will write to a given file.
|
---|
1401 | *
|
---|
1402 | * The second object is the context. A file is associated with a context
|
---|
1403 | * and requests for this file may complete only on the context the file
|
---|
1404 | * was associated with and not on the context given in RTFileAioCtxSubmit()
|
---|
1405 | * (see below for further information).
|
---|
1406 | * RTFileAioCtxWait() is used to wait for completion of requests which were
|
---|
1407 | * associated with the context. While waiting for requests the thread can not
|
---|
1408 | * respond to global state changes. That's why the API provides a way to let
|
---|
1409 | * RTFileAioCtxWait() return immediately no matter how many requests
|
---|
1410 | * have finished through RTFileAioCtxWakeup(). The return code is
|
---|
1411 | * VERR_INTERRUPTED to let the thread know that he got interrupted.
|
---|
1412 | *
|
---|
1413 | * @section sec_rt_asyncio_request_states Request states
|
---|
1414 | *
|
---|
1415 | * Created:
|
---|
1416 | * After a request was created with RTFileAioReqCreate() it is in the same state
|
---|
1417 | * like it just completed successfully. RTFileAioReqGetRC() will return VINF_SUCCESS
|
---|
1418 | * and a transfer size of 0. RTFileAioReqGetUser() will return NULL. The request can be
|
---|
1419 | * destroyed RTFileAioReqDestroy(). It is also allowed to prepare a the request
|
---|
1420 | * for a data transfer with the RTFileAioReqPrepare* methods.
|
---|
1421 | * Calling any other method like RTFileAioCtxSubmit() will return VERR_FILE_AIO_NOT_PREPARED
|
---|
1422 | * and RTFileAioReqCancel() returns VERR_FILE_AIO_NOT_SUBMITTED.
|
---|
1423 | *
|
---|
1424 | * Prepared:
|
---|
1425 | * A request will enter this state if one of the RTFileAioReqPrepare* methods
|
---|
1426 | * is called. In this state you can still destroy and retrieve the user data
|
---|
1427 | * associated with the request but trying to cancel the request or getting
|
---|
1428 | * the result of the operation will return VERR_FILE_AIO_NOT_SUBMITTED.
|
---|
1429 | *
|
---|
1430 | * Submitted:
|
---|
1431 | * A prepared request can be submitted with RTFileAioCtxSubmit(). If the operation
|
---|
1432 | * succeeds it is not allowed to touch the request or free any resources until
|
---|
1433 | * it completed through RTFileAioCtxWait(). The only allowed method is RTFileAioReqCancel()
|
---|
1434 | * which tries to cancel the request. The request will go into the completed state
|
---|
1435 | * and RTFileAioReqGetRC() will return VERR_FILE_AIO_CANCELED.
|
---|
1436 | * If the request completes not matter if successfully or with an error it will
|
---|
1437 | * switch into the completed state. RTFileReqDestroy() fails if the given request
|
---|
1438 | * is in this state.
|
---|
1439 | *
|
---|
1440 | * Completed:
|
---|
1441 | * The request will be in this state after it completed and returned through
|
---|
1442 | * RTFileAioCtxWait(). RTFileAioReqGetRC() returns the final result code
|
---|
1443 | * and the number of bytes transferred.
|
---|
1444 | * The request can be used for new data transfers.
|
---|
1445 | *
|
---|
1446 | * @section sec_rt_asyncio_threading Threading
|
---|
1447 | *
|
---|
1448 | * The API is a thin wrapper around the specific host OS APIs and therefore
|
---|
1449 | * relies on the thread safety of the underlying API.
|
---|
1450 | * The interesting functions with regards to thread safety are RTFileAioCtxSubmit()
|
---|
1451 | * and RTFileAioCtxWait(). RTFileAioCtxWait() must not be called from different
|
---|
1452 | * threads at the same time with the same context handle. The same applies to
|
---|
1453 | * RTFileAioCtxSubmit(). However it is possible to submit new requests from a different
|
---|
1454 | * thread while waiting for completed requests on another thread with RTFileAioCtxWait().
|
---|
1455 | *
|
---|
1456 | * @section sec_rt_asyncio_implementations Differences in implementation
|
---|
1457 | *
|
---|
1458 | * Because the host APIs are quite different on every OS and every API has other limitations
|
---|
1459 | * there are some things to consider to make the code as portable as possible.
|
---|
1460 | *
|
---|
1461 | * The first restriction at the moment is that every buffer has to be aligned to a 512 byte boundary.
|
---|
1462 | * This limitation comes from the Linux io_* interface. To use the interface the file
|
---|
1463 | * must be opened with O_DIRECT. This flag disables the kernel cache too which may
|
---|
1464 | * degrade performance but is unfortunately the only way to make asynchronous
|
---|
1465 | * I/O work till today (if O_DIRECT is omitted io_submit will revert to sychronous behavior
|
---|
1466 | * and will return when the requests finished and when they are queued).
|
---|
1467 | * It is mostly used by DBMS which do theire own caching.
|
---|
1468 | * Furthermore there is no filesystem independent way to discover the restrictions at least
|
---|
1469 | * for the 2.4 kernel series. Since 2.6 the 512 byte boundary seems to be used by all
|
---|
1470 | * file systems. So Linus comment about this flag is comprehensible but Linux
|
---|
1471 | * lacks an alternative at the moment.
|
---|
1472 | *
|
---|
1473 | * The next limitation applies only to Windows. Requests are not associated with the
|
---|
1474 | * I/O context they are associated with but with the file the request is for.
|
---|
1475 | * The file needs to be associated with exactly one I/O completion port and requests
|
---|
1476 | * for this file will only arrive at that context after they completed and not on
|
---|
1477 | * the context the request was submitted.
|
---|
1478 | * To associate a file with a specific context RTFileAioCtxAssociateWithFile() is
|
---|
1479 | * used. It is only implemented on Windows and does nothing on the other platforms.
|
---|
1480 | * If the file needs to be associated with different context for some reason
|
---|
1481 | * the file must be closed first. After it was opened again the new context
|
---|
1482 | * can be associated with the other context.
|
---|
1483 | * This can't be done by the API because there is no way to retrieve the flags
|
---|
1484 | * the file was opened with.
|
---|
1485 | */
|
---|
1486 |
|
---|
1487 | /**
|
---|
1488 | * Global limits for the AIO API.
|
---|
1489 | */
|
---|
1490 | typedef struct RTFILEAIOLIMITS
|
---|
1491 | {
|
---|
1492 | /** Global number of simultaneous outstanding requests allowed.
|
---|
1493 | * RTFILEAIO_UNLIMITED_REQS means no limit. */
|
---|
1494 | uint32_t cReqsOutstandingMax;
|
---|
1495 | /** The alignment data buffers need to have.
|
---|
1496 | * 0 means no alignment restrictions. */
|
---|
1497 | uint32_t cbBufferAlignment;
|
---|
1498 | } RTFILEAIOLIMITS;
|
---|
1499 | /** A pointer to a AIO limits structure. */
|
---|
1500 | typedef RTFILEAIOLIMITS *PRTFILEAIOLIMITS;
|
---|
1501 |
|
---|
1502 | /**
|
---|
1503 | * Returns the global limits for the AIO API.
|
---|
1504 | *
|
---|
1505 | * @returns IPRT status code.
|
---|
1506 | * @retval VERR_NOT_SUPPORTED if the host does not support the async I/O API.
|
---|
1507 | *
|
---|
1508 | * @param pAioLimits Where to store the global limit information.
|
---|
1509 | */
|
---|
1510 | RTDECL(int) RTFileAioGetLimits(PRTFILEAIOLIMITS pAioLimits);
|
---|
1511 |
|
---|
1512 | /**
|
---|
1513 | * Creates an async I/O request handle.
|
---|
1514 | *
|
---|
1515 | * @returns IPRT status code.
|
---|
1516 | * @param phReq Where to store the request handle.
|
---|
1517 | */
|
---|
1518 | RTDECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq);
|
---|
1519 |
|
---|
1520 | /**
|
---|
1521 | * Destroys an async I/O request handle.
|
---|
1522 | *
|
---|
1523 | * @returns IPRT status code.
|
---|
1524 | * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
|
---|
1525 | *
|
---|
1526 | * @param hReq The request handle.
|
---|
1527 | */
|
---|
1528 | RTDECL(int) RTFileAioReqDestroy(RTFILEAIOREQ hReq);
|
---|
1529 |
|
---|
1530 | /**
|
---|
1531 | * Prepares an async read request.
|
---|
1532 | *
|
---|
1533 | * @returns IPRT status code.
|
---|
1534 | * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
|
---|
1535 | *
|
---|
1536 | * @param hReq The request handle.
|
---|
1537 | * @param hFile The file to read from.
|
---|
1538 | * @param off The offset to start reading at.
|
---|
1539 | * @param pvBuf Where to store the read bits.
|
---|
1540 | * @param cbRead Number of bytes to read.
|
---|
1541 | * @param pvUser Opaque user data associated with this request which
|
---|
1542 | * can be retrieved with RTFileAioReqGetUser().
|
---|
1543 | */
|
---|
1544 | RTDECL(int) RTFileAioReqPrepareRead(RTFILEAIOREQ hReq, RTFILE hFile, RTFOFF off,
|
---|
1545 | void *pvBuf, size_t cbRead, void *pvUser);
|
---|
1546 |
|
---|
1547 | /**
|
---|
1548 | * Prepares an async write request.
|
---|
1549 | *
|
---|
1550 | * @returns IPRT status code.
|
---|
1551 | * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
|
---|
1552 | *
|
---|
1553 | * @param hReq The request handle.
|
---|
1554 | * @param hFile The file to write to.
|
---|
1555 | * @param off The offset to start writing at.
|
---|
1556 | * @param pvBuf The bits to write.
|
---|
1557 | * @param cbWrite Number of bytes to write.
|
---|
1558 | * @param pvUser Opaque user data associated with this request which
|
---|
1559 | * can be retrieved with RTFileAioReqGetUser().
|
---|
1560 | */
|
---|
1561 | RTDECL(int) RTFileAioReqPrepareWrite(RTFILEAIOREQ hReq, RTFILE hFile, RTFOFF off,
|
---|
1562 | void const *pvBuf, size_t cbWrite, void *pvUser);
|
---|
1563 |
|
---|
1564 | /**
|
---|
1565 | * Prepares an async flush of all cached data associated with a file handle.
|
---|
1566 | *
|
---|
1567 | * @returns IPRT status code.
|
---|
1568 | * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
|
---|
1569 | *
|
---|
1570 | * @param hReq The request handle.
|
---|
1571 | * @param hFile The file to flush.
|
---|
1572 | * @param pvUser Opaque user data associated with this request which
|
---|
1573 | * can be retrieved with RTFileAioReqGetUser().
|
---|
1574 | *
|
---|
1575 | * @remarks May also flush other caches on some platforms.
|
---|
1576 | */
|
---|
1577 | RTDECL(int) RTFileAioReqPrepareFlush(RTFILEAIOREQ hReq, RTFILE hFile, void *pvUser);
|
---|
1578 |
|
---|
1579 | /**
|
---|
1580 | * Gets the opaque user data associated with the given request.
|
---|
1581 | *
|
---|
1582 | * @returns Opaque user data.
|
---|
1583 | * @retval NULL if the request hasn't been prepared yet.
|
---|
1584 | *
|
---|
1585 | * @param hReq The request handle.
|
---|
1586 | */
|
---|
1587 | RTDECL(void *) RTFileAioReqGetUser(RTFILEAIOREQ hReq);
|
---|
1588 |
|
---|
1589 | /**
|
---|
1590 | * Cancels a pending request.
|
---|
1591 | *
|
---|
1592 | * @returns IPRT status code.
|
---|
1593 | * @retval VINF_SUCCESS If the request was canceled.
|
---|
1594 | * @retval VERR_FILE_AIO_NOT_SUBMITTED If the request wasn't submitted yet.
|
---|
1595 | * @retval VERR_FILE_AIO_IN_PROGRESS If the request could not be canceled because it is already processed.
|
---|
1596 | * @retval VERR_FILE_AIO_COMPLETED If the request could not be canceled because it already completed.
|
---|
1597 | *
|
---|
1598 | * @param hReq The request to cancel.
|
---|
1599 | */
|
---|
1600 | RTDECL(int) RTFileAioReqCancel(RTFILEAIOREQ hReq);
|
---|
1601 |
|
---|
1602 | /**
|
---|
1603 | * Gets the status of a completed request.
|
---|
1604 | *
|
---|
1605 | * @returns The IPRT status code of the given request.
|
---|
1606 | * @retval VERR_FILE_AIO_NOT_SUBMITTED if the request wasn't submitted yet.
|
---|
1607 | * @retval VERR_FILE_AIO_CANCELED if the request was canceled.
|
---|
1608 | * @retval VERR_FILE_AIO_IN_PROGRESS if the request isn't yet completed.
|
---|
1609 | *
|
---|
1610 | * @param hReq The request handle.
|
---|
1611 | * @param pcbTransferred Where to store the number of bytes transferred.
|
---|
1612 | * Optional since it is not relevant for all kinds of
|
---|
1613 | * requests.
|
---|
1614 | */
|
---|
1615 | RTDECL(int) RTFileAioReqGetRC(RTFILEAIOREQ hReq, size_t *pcbTransferred);
|
---|
1616 |
|
---|
1617 |
|
---|
1618 |
|
---|
1619 | /**
|
---|
1620 | * Creates an async I/O context.
|
---|
1621 | *
|
---|
1622 | * @todo briefly explain what an async context is here or in the page
|
---|
1623 | * above.
|
---|
1624 | *
|
---|
1625 | * @returns IPRT status code.
|
---|
1626 | * @param phAioCtx Where to store the async I/O context handle.
|
---|
1627 | * @param cAioReqsMax How many async I/O requests the context should be capable
|
---|
1628 | * to handle. Pass RTFILEAIO_UNLIMITED_REQS if the
|
---|
1629 | * context should support an unlimited number of
|
---|
1630 | * requests.
|
---|
1631 | * @param fFlags Combination of RTFILEAIOCTX_FLAGS_*.
|
---|
1632 | */
|
---|
1633 | RTDECL(int) RTFileAioCtxCreate(PRTFILEAIOCTX phAioCtx, uint32_t cAioReqsMax,
|
---|
1634 | uint32_t fFlags);
|
---|
1635 |
|
---|
1636 | /** Unlimited number of requests.
|
---|
1637 | * Used with RTFileAioCtxCreate and RTFileAioCtxGetMaxReqCount. */
|
---|
1638 | #define RTFILEAIO_UNLIMITED_REQS UINT32_MAX
|
---|
1639 |
|
---|
1640 | /** When set RTFileAioCtxWait() will always wait for completing requests,
|
---|
1641 | * even when there is none waiting currently, instead of returning
|
---|
1642 | * VERR_FILE_AIO_NO_REQUEST. */
|
---|
1643 | #define RTFILEAIOCTX_FLAGS_WAIT_WITHOUT_PENDING_REQUESTS RT_BIT_32(0)
|
---|
1644 | /** mask of valid flags. */
|
---|
1645 | #define RTFILEAIOCTX_FLAGS_VALID_MASK (RTFILEAIOCTX_FLAGS_WAIT_WITHOUT_PENDING_REQUESTS)
|
---|
1646 |
|
---|
1647 | /**
|
---|
1648 | * Destroys an async I/O context.
|
---|
1649 | *
|
---|
1650 | * @returns IPRT status code.
|
---|
1651 | * @param hAioCtx The async I/O context handle.
|
---|
1652 | */
|
---|
1653 | RTDECL(int) RTFileAioCtxDestroy(RTFILEAIOCTX hAioCtx);
|
---|
1654 |
|
---|
1655 | /**
|
---|
1656 | * Get the maximum number of requests one aio context can handle.
|
---|
1657 | *
|
---|
1658 | * @returns Maximum number of tasks the context can handle.
|
---|
1659 | * RTFILEAIO_UNLIMITED_REQS if there is no limit.
|
---|
1660 | *
|
---|
1661 | * @param hAioCtx The async I/O context handle.
|
---|
1662 | * If NIL_RTAIOCONTEXT is passed the maximum value
|
---|
1663 | * which can be passed to RTFileAioCtxCreate()
|
---|
1664 | * is returned.
|
---|
1665 | */
|
---|
1666 | RTDECL(uint32_t) RTFileAioCtxGetMaxReqCount(RTFILEAIOCTX hAioCtx);
|
---|
1667 |
|
---|
1668 | /**
|
---|
1669 | * Associates a file with an async I/O context.
|
---|
1670 | * Requests for this file will arrive at the completion port
|
---|
1671 | * associated with the file.
|
---|
1672 | *
|
---|
1673 | * @returns IPRT status code.
|
---|
1674 | *
|
---|
1675 | * @param hAioCtx The async I/O context handle.
|
---|
1676 | * @param hFile The file handle.
|
---|
1677 | */
|
---|
1678 | RTDECL(int) RTFileAioCtxAssociateWithFile(RTFILEAIOCTX hAioCtx, RTFILE hFile);
|
---|
1679 |
|
---|
1680 | /**
|
---|
1681 | * Submits a set of requests to an async I/O context for processing.
|
---|
1682 | *
|
---|
1683 | * @returns IPRT status code.
|
---|
1684 | * @returns VERR_FILE_AIO_INSUFFICIENT_RESSOURCES if the maximum number of
|
---|
1685 | * simultaneous outstanding requests would be exceeded.
|
---|
1686 | *
|
---|
1687 | * @param hAioCtx The async I/O context handle.
|
---|
1688 | * @param pahReqs Pointer to an array of request handles.
|
---|
1689 | * @param cReqs The number of entries in the array.
|
---|
1690 | *
|
---|
1691 | * @remarks It is possible that some requests could be submitted successfully
|
---|
1692 | * even if the method returns an error code. In that case RTFileAioReqGetRC()
|
---|
1693 | * can be used to determine the status of a request.
|
---|
1694 | * If it returns VERR_FILE_AIO_IN_PROGRESS it was submitted successfully.
|
---|
1695 | * Any other error code may indicate why the request failed.
|
---|
1696 | * VERR_FILE_AIO_NOT_SUBMITTED indicates that a request wasn't submitted
|
---|
1697 | * probably because the previous request encountered an error.
|
---|
1698 | *
|
---|
1699 | * @remarks @a cReqs uses the type size_t while it really is a uint32_t, this is
|
---|
1700 | * to avoid annoying warnings when using RT_ELEMENTS and similar
|
---|
1701 | * macros.
|
---|
1702 | */
|
---|
1703 | RTDECL(int) RTFileAioCtxSubmit(RTFILEAIOCTX hAioCtx, PRTFILEAIOREQ pahReqs, size_t cReqs);
|
---|
1704 |
|
---|
1705 | /**
|
---|
1706 | * Waits for request completion.
|
---|
1707 | *
|
---|
1708 | * Only one thread at a time may call this API on a context.
|
---|
1709 | *
|
---|
1710 | * @returns IPRT status code.
|
---|
1711 | * @retval VERR_INVALID_POINTER If pcReqs or/and pahReqs are invalid.
|
---|
1712 | * @retval VERR_INVALID_HANDLE If hAioCtx is invalid.
|
---|
1713 | * @retval VERR_OUT_OF_RANGE If cMinReqs is larger than cReqs.
|
---|
1714 | * @retval VERR_INVALID_PARAMETER If cReqs is 0.
|
---|
1715 | * @retval VERR_TIMEOUT If cMinReqs didn't complete before the
|
---|
1716 | * timeout expired.
|
---|
1717 | * @retval VERR_INTERRUPTED If the completion context was interrupted
|
---|
1718 | * by RTFileAioCtxWakeup().
|
---|
1719 | * @retval VERR_FILE_AIO_NO_REQUEST If there are no pending request.
|
---|
1720 | *
|
---|
1721 | * @param hAioCtx The async I/O context handle to wait and get
|
---|
1722 | * completed requests from.
|
---|
1723 | * @param cMinReqs The minimum number of requests which have to
|
---|
1724 | * complete before this function returns.
|
---|
1725 | * @param cMillies The number of milliseconds to wait before returning
|
---|
1726 | * VERR_TIMEOUT. Use RT_INDEFINITE_WAIT to wait
|
---|
1727 | * forever.
|
---|
1728 | * @param pahReqs Pointer to an array where the handles of the
|
---|
1729 | * completed requests will be stored on success.
|
---|
1730 | * @param cReqs The number of entries @a pahReqs can hold.
|
---|
1731 | * @param pcReqs Where to store the number of returned (complete)
|
---|
1732 | * requests. This will always be set.
|
---|
1733 | *
|
---|
1734 | * @remarks The wait will be resume if interrupted by a signal. An
|
---|
1735 | * RTFileAioCtxWaitNoResume variant can be added later if it becomes
|
---|
1736 | * necessary.
|
---|
1737 | *
|
---|
1738 | * @remarks @a cMinReqs and @a cReqs use the type size_t while they really are
|
---|
1739 | * uint32_t's, this is to avoid annoying warnings when using
|
---|
1740 | * RT_ELEMENTS and similar macros.
|
---|
1741 | */
|
---|
1742 | RTDECL(int) RTFileAioCtxWait(RTFILEAIOCTX hAioCtx, size_t cMinReqs, RTMSINTERVAL cMillies,
|
---|
1743 | PRTFILEAIOREQ pahReqs, size_t cReqs, uint32_t *pcReqs);
|
---|
1744 |
|
---|
1745 | /**
|
---|
1746 | * Forces any RTFileAioCtxWait() call on another thread to return immediately.
|
---|
1747 | *
|
---|
1748 | * @returns IPRT status code.
|
---|
1749 | *
|
---|
1750 | * @param hAioCtx The handle of the async I/O context to wakeup.
|
---|
1751 | */
|
---|
1752 | RTDECL(int) RTFileAioCtxWakeup(RTFILEAIOCTX hAioCtx);
|
---|
1753 |
|
---|
1754 | #endif /* IN_RING3 */
|
---|
1755 |
|
---|
1756 | /** @} */
|
---|
1757 |
|
---|
1758 | RT_C_DECLS_END
|
---|
1759 |
|
---|
1760 | #endif /* !IPRT_INCLUDED_file_h */
|
---|
1761 |
|
---|