VirtualBox

source: vbox/trunk/include/iprt/file.h@ 98103

Last change on this file since 98103 was 98103, checked in by vboxsync, 17 months ago

Copyright year updates by scm.

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

© 2023 Oracle
ContactPrivacy policyTerms of Use