VirtualBox

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

Last change on this file since 35517 was 34435, checked in by vboxsync, 14 years ago

ExtPack: Implemented unpacking (untested).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 50.3 KB
Line 
1/** @file
2 * IPRT - File I/O.
3 */
4
5/*
6 * Copyright (C) 2006-2010 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_file_h
27#define ___iprt_file_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/stdarg.h>
32#ifdef IN_RING3
33# include <iprt/fs.h>
34#endif
35
36RT_C_DECLS_BEGIN
37
38/** @defgroup grp_rt_fileio RTFile - File I/O
39 * @ingroup grp_rt
40 * @{
41 */
42
43/** Platform specific text line break.
44 * @deprecated Use text I/O streams and '\\n'. See iprt/stream.h. */
45#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
46# define RTFILE_LINEFEED "\r\n"
47#else
48# define RTFILE_LINEFEED "\n"
49#endif
50
51/** Platform specific native standard input "handle". */
52#ifdef RT_OS_WINDOWS
53# define RTFILE_NATIVE_STDIN ((uint32_t)-10)
54#else
55# define RTFILE_NATIVE_STDIN 0
56#endif
57
58/** Platform specific native standard outt "handle". */
59#ifdef RT_OS_WINDOWS
60# define RTFILE_NATIVE_STDOUT ((uint32_t)-11)
61#else
62# define RTFILE_NATIVE_STDOUT 1
63#endif
64
65/** Platform specific native standard error "handle". */
66#ifdef RT_OS_WINDOWS
67# define RTFILE_NATIVE_STDERR ((uint32_t)-12)
68#else
69# define RTFILE_NATIVE_STDERR 2
70#endif
71
72
73#ifdef IN_RING3
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 */
85RTDECL(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 */
98RTDECL(int) RTFileQuerySize(const char *pszPath, uint64_t *pcbFile);
99
100
101/** @name Open flags
102 * @{ */
103/** Open the file with read access. */
104#define RTFILE_O_READ UINT32_C(0x00000001)
105/** Open the file with write access. */
106#define RTFILE_O_WRITE UINT32_C(0x00000002)
107/** Open the file with read & write access. */
108#define RTFILE_O_READWRITE UINT32_C(0x00000003)
109/** The file access mask.
110 * @remarks The value 0 is invalid. */
111#define RTFILE_O_ACCESS_MASK UINT32_C(0x00000003)
112
113/** Open file in APPEND mode, so all writes to the file handle will
114 * append data at the end of the file.
115 * @remarks It is ignored if write access is not requested, that is
116 * RTFILE_O_WRITE is not set. */
117#define RTFILE_O_APPEND UINT32_C(0x00000004)
118 /* UINT32_C(0x00000008) is unused atm. */
119
120/** Sharing mode: deny none. */
121#define RTFILE_O_DENY_NONE UINT32_C(0x00000080)
122/** Sharing mode: deny read. */
123#define RTFILE_O_DENY_READ UINT32_C(0x00000010)
124/** Sharing mode: deny write. */
125#define RTFILE_O_DENY_WRITE UINT32_C(0x00000020)
126/** Sharing mode: deny read and write. */
127#define RTFILE_O_DENY_READWRITE UINT32_C(0x00000030)
128/** Sharing mode: deny all. */
129#define RTFILE_O_DENY_ALL RTFILE_O_DENY_READWRITE
130/** Sharing mode: do NOT deny delete (NT).
131 * @remarks This might not be implemented on all platforms, and will be
132 * defaulted & ignored on those.
133 */
134#define RTFILE_O_DENY_NOT_DELETE UINT32_C(0x00000040)
135/** Sharing mode mask. */
136#define RTFILE_O_DENY_MASK UINT32_C(0x000000f0)
137
138/** Action: Open an existing file (the default action). */
139#define RTFILE_O_OPEN UINT32_C(0x00000700)
140/** Action: Create a new file or open an existing one. */
141#define RTFILE_O_OPEN_CREATE UINT32_C(0x00000100)
142/** Action: Create a new a file. */
143#define RTFILE_O_CREATE UINT32_C(0x00000200)
144/** Action: Create a new file or replace an existing one. */
145#define RTFILE_O_CREATE_REPLACE UINT32_C(0x00000300)
146/** Action mask. */
147#define RTFILE_O_ACTION_MASK UINT32_C(0x00000700)
148
149/** Turns off indexing of files on Windows hosts, *CREATE* only.
150 * @remarks Window only. */
151#define RTFILE_O_NOT_CONTENT_INDEXED UINT32_C(0x00000800)
152/** Truncate the file.
153 * @remarks This will not truncate files opened for read-only.
154 * @remarks The trunction doesn't have to be atomically, so anyone else opening
155 * the file may be racing us. The caller is responsible for not causing
156 * this race. */
157#define RTFILE_O_TRUNCATE UINT32_C(0x00001000)
158/** Make the handle inheritable on RTProcessCreate(/exec). */
159#define RTFILE_O_INHERIT UINT32_C(0x00002000)
160/** Open file in non-blocking mode - non-portable.
161 * @remarks This flag may not be supported on all platforms, in which case it's
162 * considered an invalid parameter. */
163#define RTFILE_O_NON_BLOCK UINT32_C(0x00004000)
164/** Write through directly to disk. Workaround to avoid iSCSI
165 * initiator deadlocks on Windows hosts.
166 * @remarks This might not be implemented on all platforms, and will be ignored
167 * on those. */
168#define RTFILE_O_WRITE_THROUGH UINT32_C(0x00008000)
169
170/** Attribute access: Attributes can be read if the file is being opened with
171 * read access, and can be written with write access. */
172#define RTFILE_O_ACCESS_ATTR_DEFAULT UINT32_C(0x00000000)
173/** Attribute access: Attributes can be read.
174 * @remarks Windows only. */
175#define RTFILE_O_ACCESS_ATTR_READ UINT32_C(0x00010000)
176/** Attribute access: Attributes can be written.
177 * @remarks Windows only. */
178#define RTFILE_O_ACCESS_ATTR_WRITE UINT32_C(0x00020000)
179/** Attribute access: Attributes can be both read & written.
180 * @remarks Windows only. */
181#define RTFILE_O_ACCESS_ATTR_READWRITE UINT32_C(0x00030000)
182/** Attribute access: The file attributes access mask.
183 * @remarks Windows only. */
184#define RTFILE_O_ACCESS_ATTR_MASK UINT32_C(0x00030000)
185
186/** Open file for async I/O
187 * @remarks This flag may not be needed on all platforms, and will be ignored on
188 * those. */
189#define RTFILE_O_ASYNC_IO UINT32_C(0x00040000)
190
191/** Disables caching.
192 *
193 * Useful when using very big files which might bring the host I/O scheduler to
194 * its knees during high I/O load.
195 *
196 * @remarks This flag might impose restrictions
197 * on the buffer alignment, start offset and/or transfer size.
198 *
199 * On Linux the buffer needs to be aligned to the 512 sector
200 * boundary.
201 *
202 * On Windows the FILE_FLAG_NO_BUFFERING is used (see
203 * http://msdn.microsoft.com/en-us/library/cc644950(VS.85).aspx ).
204 * The buffer address, the transfer size and offset needs to be aligned
205 * to the sector size of the volume. Furthermore FILE_APPEND_DATA is
206 * disabled. To write beyond the size of file use RTFileSetSize prior
207 * writing the data to the file.
208 *
209 * This flag does not work on Solaris if the target filesystem is ZFS.
210 * RTFileOpen will return an error with that configuration. When used
211 * with UFS the same alginment restrictions apply like Linux and
212 * Windows.
213 *
214 * @remarks This might not be implemented on all platforms, and will be ignored
215 * on those.
216 */
217#define RTFILE_O_NO_CACHE UINT32_C(0x00080000)
218
219/** Unix file mode mask for use when creating files. */
220#define RTFILE_O_CREATE_MODE_MASK UINT32_C(0x1ff00000)
221/** The number of bits to shift to get the file mode mask.
222 * To extract it: (fFlags & RTFILE_O_CREATE_MODE_MASK) >> RTFILE_O_CREATE_MODE_SHIFT.
223 */
224#define RTFILE_O_CREATE_MODE_SHIFT 20
225
226 /*UINT32_C(0x20000000),
227 UINT32_C(0x40000000)
228 and UINT32_C(0x80000000) are unused atm. */
229
230/** Mask of all valid flags.
231 * @remark This doesn't validate the access mode properly.
232 */
233#define RTFILE_O_VALID_MASK UINT32_C(0x1ffffff7)
234
235/** @} */
236
237
238/**
239 * Force the use of open flags for all files opened after the setting is
240 * changed. The caller is responsible for not causing races with RTFileOpen().
241 *
242 * @returns iprt status code.
243 * @param fOpenForAccess Access mode to which the set/mask settings apply.
244 * @param fSet Open flags to be forced set.
245 * @param fMask Open flags to be masked out.
246 */
247RTR3DECL(int) RTFileSetForceFlags(unsigned fOpenForAccess, unsigned fSet, unsigned fMask);
248
249/**
250 * Open a file.
251 *
252 * @returns iprt status code.
253 * @param pFile Where to store the handle to the opened file.
254 * @param pszFilename Path to the file which is to be opened. (UTF-8)
255 * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
256 * The ACCESS, ACTION and DENY flags are mandatory!
257 */
258RTR3DECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, uint32_t fOpen);
259
260/**
261 * Open a file given as a format string.
262 *
263 * @returns iprt status code.
264 * @param pFile Where to store the handle to the opened file.
265 * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
266 * The ACCESS, ACTION and DENY flags are mandatory!
267 * @param pszFilenameFmt Format string givin the path to the file which is to
268 * be opened. (UTF-8)
269 * @param ... Arguments to the format string.
270 */
271RTR3DECL(int) RTFileOpenF(PRTFILE pFile, uint32_t fOpen, const char *pszFilenameFmt, ...);
272
273/**
274 * Open a file given as a format string.
275 *
276 * @returns iprt status code.
277 * @param pFile Where to store the handle to the opened file.
278 * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
279 * The ACCESS, ACTION and DENY flags are mandatory!
280 * @param pszFilenameFmt Format string givin the path to the file which is to
281 * be opened. (UTF-8)
282 * @param va Arguments to the format string.
283 */
284RTR3DECL(int) RTFileOpenV(PRTFILE pFile, uint32_t fOpen, const char *pszFilenameFmt, va_list va);
285
286/**
287 * Open the bit bucket (aka /dev/null or nul).
288 *
289 * @returns IPRT status code.
290 * @param phFile Where to store the handle to the opened file.
291 * @param fAccess The desired access only, i.e. read, write or both.
292 */
293RTR3DECL(int) RTFileOpenBitBucket(PRTFILE phFile, uint32_t fAccess);
294
295/**
296 * Close a file opened by RTFileOpen().
297 *
298 * @returns iprt status code.
299 * @param File The file handle to close.
300 */
301RTR3DECL(int) RTFileClose(RTFILE File);
302
303/**
304 * Creates an IPRT file handle from a native one.
305 *
306 * @returns IPRT status code.
307 * @param pFile Where to store the IPRT file handle.
308 * @param uNative The native handle.
309 */
310RTR3DECL(int) RTFileFromNative(PRTFILE pFile, RTHCINTPTR uNative);
311
312/**
313 * Gets the native handle for an IPRT file handle.
314 *
315 * @return The native handle.
316 * @param File The IPRT file handle.
317 */
318RTR3DECL(RTHCINTPTR) RTFileToNative(RTFILE File);
319
320/**
321 * Delete a file.
322 *
323 * @returns iprt status code.
324 * @param pszFilename Path to the file which is to be deleted. (UTF-8)
325 * @todo This is a RTPath api!
326 */
327RTR3DECL(int) RTFileDelete(const char *pszFilename);
328
329/** @name Seek flags.
330 * @{ */
331/** Seek from the start of the file. */
332#define RTFILE_SEEK_BEGIN 0x00
333/** Seek from the current file position. */
334#define RTFILE_SEEK_CURRENT 0x01
335/** Seek from the end of the file. */
336#define RTFILE_SEEK_END 0x02
337/** @internal */
338#define RTFILE_SEEK_FIRST RTFILE_SEEK_BEGIN
339/** @internal */
340#define RTFILE_SEEK_LAST RTFILE_SEEK_END
341/** @} */
342
343
344/**
345 * Changes the read & write position in a file.
346 *
347 * @returns iprt status code.
348 * @param File Handle to the file.
349 * @param offSeek Offset to seek.
350 * @param uMethod Seek method, i.e. one of the RTFILE_SEEK_* defines.
351 * @param poffActual Where to store the new file position.
352 * NULL is allowed.
353 */
354RTR3DECL(int) RTFileSeek(RTFILE File, int64_t offSeek, unsigned uMethod, uint64_t *poffActual);
355
356/**
357 * Read bytes from a file.
358 *
359 * @returns iprt status code.
360 * @param File Handle to the file.
361 * @param pvBuf Where to put the bytes we read.
362 * @param cbToRead How much to read.
363 * @param *pcbRead How much we actually read .
364 * If NULL an error will be returned for a partial read.
365 */
366RTR3DECL(int) RTFileRead(RTFILE File, void *pvBuf, size_t cbToRead, size_t *pcbRead);
367
368/**
369 * Read bytes from a file at a given offset.
370 * This function may modify the file position.
371 *
372 * @returns iprt status code.
373 * @param File Handle to the file.
374 * @param off Where to read.
375 * @param pvBuf Where to put the bytes we read.
376 * @param cbToRead How much to read.
377 * @param *pcbRead How much we actually read .
378 * If NULL an error will be returned for a partial read.
379 */
380RTR3DECL(int) RTFileReadAt(RTFILE File, RTFOFF off, void *pvBuf, size_t cbToRead, size_t *pcbRead);
381
382/**
383 * Write bytes to a file.
384 *
385 * @returns iprt status code.
386 * @param File Handle to the file.
387 * @param pvBuf What to write.
388 * @param cbToWrite How much to write.
389 * @param *pcbWritten How much we actually wrote.
390 * If NULL an error will be returned for a partial write.
391 */
392RTR3DECL(int) RTFileWrite(RTFILE File, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
393
394/**
395 * Write bytes to a file at a given offset.
396 * This function may modify the file position.
397 *
398 * @returns iprt status code.
399 * @param File Handle to the file.
400 * @param off Where to write.
401 * @param pvBuf What to write.
402 * @param cbToWrite How much to write.
403 * @param *pcbWritten How much we actually wrote.
404 * If NULL an error will be returned for a partial write.
405 */
406RTR3DECL(int) RTFileWriteAt(RTFILE File, RTFOFF off, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
407
408/**
409 * Flushes the buffers for the specified file.
410 *
411 * @returns iprt status code.
412 * @param File Handle to the file.
413 */
414RTR3DECL(int) RTFileFlush(RTFILE File);
415
416/**
417 * Set the size of the file.
418 *
419 * @returns iprt status code.
420 * @param File Handle to the file.
421 * @param cbSize The new file size.
422 */
423RTR3DECL(int) RTFileSetSize(RTFILE File, uint64_t cbSize);
424
425/**
426 * Query the size of the file.
427 *
428 * @returns iprt status code.
429 * @param File Handle to the file.
430 * @param pcbSize Where to store the filesize.
431 */
432RTR3DECL(int) RTFileGetSize(RTFILE File, uint64_t *pcbSize);
433
434/**
435 * Determine the maximum file size.
436 *
437 * @returns The max size of the file.
438 * -1 on failure, the file position is undefined.
439 * @param File Handle to the file.
440 * @see RTFileGetMaxSizeEx.
441 */
442RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
443
444/**
445 * Determine the maximum file size.
446 *
447 * @returns IPRT status code.
448 * @param File Handle to the file.
449 * @param pcbMax Where to store the max file size.
450 * @see RTFileGetMaxSize.
451 */
452RTR3DECL(int) RTFileGetMaxSizeEx(RTFILE File, PRTFOFF pcbMax);
453
454/**
455 * Determine the maximum file size depending on the file system the file is stored on.
456 *
457 * @returns The max size of the file.
458 * -1 on failure.
459 * @param File Handle to the file.
460 */
461RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
462
463/**
464 * Gets the current file position.
465 *
466 * @returns File offset.
467 * @returns ~0UUL on failure.
468 * @param File Handle to the file.
469 */
470RTDECL(uint64_t) RTFileTell(RTFILE File);
471
472/**
473 * Checks if the supplied handle is valid.
474 *
475 * @returns true if valid.
476 * @returns false if invalid.
477 * @param File The file handle
478 */
479RTR3DECL(bool) RTFileIsValid(RTFILE File);
480
481/**
482 * Copies a file.
483 *
484 * @returns VERR_ALREADY_EXISTS if the destination file exists.
485 * @returns VBox Status code.
486 *
487 * @param pszSrc The path to the source file.
488 * @param pszDst The path to the destination file.
489 * This file will be created.
490 */
491RTDECL(int) RTFileCopy(const char *pszSrc, const char *pszDst);
492
493/**
494 * Copies a file given the handles to both files.
495 *
496 * @returns VBox Status code.
497 *
498 * @param FileSrc The source file. The file position is unaltered.
499 * @param FileDst The destination file.
500 * On successful returns the file position is at the end of the file.
501 * On failures the file position and size is undefined.
502 */
503RTDECL(int) RTFileCopyByHandles(RTFILE FileSrc, RTFILE FileDst);
504
505/** Flags for RTFileCopyEx().
506 * @{ */
507/** Do not use RTFILE_O_DENY_WRITE on the source file to allow for copying files opened for writing. */
508#define RTFILECOPY_FLAGS_NO_SRC_DENY_WRITE RT_BIT(0)
509/** Do not use RTFILE_O_DENY_WRITE on the target file. */
510#define RTFILECOPY_FLAGS_NO_DST_DENY_WRITE RT_BIT(1)
511/** Do not use RTFILE_O_DENY_WRITE on either of the two files. */
512#define RTFILECOPY_FLAGS_NO_DENY_WRITE ( RTFILECOPY_FLAGS_NO_SRC_DENY_WRITE | RTFILECOPY_FLAGS_NO_DST_DENY_WRITE )
513/** */
514#define RTFILECOPY_FLAGS_MASK UINT32_C(0x00000003)
515/** @} */
516
517/**
518 * Copies a file.
519 *
520 * @returns VERR_ALREADY_EXISTS if the destination file exists.
521 * @returns VBox Status code.
522 *
523 * @param pszSrc The path to the source file.
524 * @param pszDst The path to the destination file.
525 * This file will be created.
526 * @param fFlags Flags (RTFILECOPY_*).
527 * @param pfnProgress Pointer to callback function for reporting progress.
528 * @param pvUser User argument to pass to pfnProgress along with the completion percentage.
529 */
530RTDECL(int) RTFileCopyEx(const char *pszSrc, const char *pszDst, uint32_t fFlags, PFNRTPROGRESS pfnProgress, void *pvUser);
531
532/**
533 * Copies a file given the handles to both files and
534 * provide progress callbacks.
535 *
536 * @returns IPRT status code.
537 *
538 * @param FileSrc The source file. The file position is unaltered.
539 * @param FileDst The destination file.
540 * On successful returns the file position is at the end of the file.
541 * On failures the file position and size is undefined.
542 * @param pfnProgress Pointer to callback function for reporting progress.
543 * @param pvUser User argument to pass to pfnProgress along with the completion percentage.
544 */
545RTDECL(int) RTFileCopyByHandlesEx(RTFILE FileSrc, RTFILE FileDst, PFNRTPROGRESS pfnProgress, void *pvUser);
546
547/**
548 * Renames a file.
549 *
550 * Identical to RTPathRename except that it will ensure that the source is not a directory.
551 *
552 * @returns IPRT status code.
553 * @returns VERR_ALREADY_EXISTS if the destination file exists.
554 *
555 * @param pszSrc The path to the source file.
556 * @param pszDst The path to the destination file.
557 * This file will be created.
558 * @param fRename See RTPathRename.
559 */
560RTDECL(int) RTFileRename(const char *pszSrc, const char *pszDst, unsigned fRename);
561
562
563/** @name RTFileMove flags (bit masks).
564 * @{ */
565/** Replace destination file if present. */
566#define RTFILEMOVE_FLAGS_REPLACE 0x1
567/** @} */
568
569/**
570 * Moves a file.
571 *
572 * RTFileMove differs from RTFileRename in that it works across volumes.
573 *
574 * @returns IPRT status code.
575 * @returns VERR_ALREADY_EXISTS if the destination file exists.
576 *
577 * @param pszSrc The path to the source file.
578 * @param pszDst The path to the destination file.
579 * This file will be created.
580 * @param fMove A combination of the RTFILEMOVE_* flags.
581 */
582RTDECL(int) RTFileMove(const char *pszSrc, const char *pszDst, unsigned fMove);
583
584
585/** @page pg_rt_filelock RT File locking API description
586 *
587 * File locking general rules:
588 *
589 * Region to lock or unlock can be located beyond the end of file, this can be used for
590 * growing files.
591 * Read (or Shared) locks can be acquired held by an unlimited number of processes at the
592 * same time, but a Write (or Exclusive) lock can only be acquired by one process, and
593 * cannot coexist with a Shared lock. To acquire a Read lock, a process must wait until
594 * there are no processes holding any Write locks. To acquire a Write lock, a process must
595 * wait until there are no processes holding either kind of lock.
596 * By default, RTFileLock and RTFileChangeLock calls returns error immediately if the lock
597 * can't be acquired due to conflict with other locks, however they can be called in wait mode.
598 *
599 * Differences in implementation:
600 *
601 * Win32, OS/2: Locking is mandatory, since locks are enforced by the operating system.
602 * I.e. when file region is locked in Read mode, any write in it will fail; in case of Write
603 * lock - region can be read and writed only by lock's owner.
604 *
605 * Win32: File size change (RTFileSetSize) is not controlled by locking at all (!) in the
606 * operation system. Also see comments to RTFileChangeLock API call.
607 *
608 * Linux/Posix: By default locks in Unixes are advisory. This means that cooperating processes
609 * may use locks to coordinate access to a file between themselves, but programs are also free
610 * to ignore locks and access the file in any way they choose to.
611 *
612 * Additional reading:
613 * http://en.wikipedia.org/wiki/File_locking
614 * http://unixhelp.ed.ac.uk/CGI/man-cgi?fcntl+2
615 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/lockfileex.asp
616 */
617
618/** @name Lock flags (bit masks).
619 * @{ */
620/** Read access, can be shared with others. */
621#define RTFILE_LOCK_READ 0x00
622/** Write access, one at a time. */
623#define RTFILE_LOCK_WRITE 0x01
624/** Don't wait for other locks to be released. */
625#define RTFILE_LOCK_IMMEDIATELY 0x00
626/** Wait till conflicting locks have been released. */
627#define RTFILE_LOCK_WAIT 0x02
628/** Valid flags mask */
629#define RTFILE_LOCK_MASK 0x03
630/** @} */
631
632
633/**
634 * Locks a region of file for read (shared) or write (exclusive) access.
635 *
636 * @returns iprt status code.
637 * @returns VERR_FILE_LOCK_VIOLATION if lock can't be acquired.
638 * @param File Handle to the file.
639 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
640 * @param offLock Offset of lock start.
641 * @param cbLock Length of region to lock, may overlap the end of file.
642 */
643RTR3DECL(int) RTFileLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
644
645/**
646 * Changes a lock type from read to write or from write to read.
647 * The region to type change must correspond exactly to an existing locked region.
648 * If change can't be done due to locking conflict and non-blocking mode is used, error is
649 * returned and lock keeps its state (see next warning).
650 *
651 * WARNING: win32 implementation of this call is not atomic, it transforms to a pair of
652 * calls RTFileUnlock and RTFileLock. Potentially the previously acquired lock can be
653 * lost, i.e. function is called in non-blocking mode, previous lock is freed, new lock can't
654 * be acquired, and old lock (previous state) can't be acquired back too. This situation
655 * may occurs _only_ if the other process is acquiring a _write_ lock in blocking mode or
656 * in race condition with the current call.
657 * In this very bad case special error code VERR_FILE_LOCK_LOST will be returned.
658 *
659 * @returns iprt status code.
660 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
661 * @returns VERR_FILE_LOCK_VIOLATION if lock type can't be changed, lock remains its type.
662 * @returns VERR_FILE_LOCK_LOST if lock was lost, we haven't this lock anymore :(
663 * @param File Handle to the file.
664 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
665 * @param offLock Offset of lock start.
666 * @param cbLock Length of region to lock, may overlap the end of file.
667 */
668RTR3DECL(int) RTFileChangeLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
669
670/**
671 * Unlocks previously locked region of file.
672 * The region to unlock must correspond exactly to an existing locked region.
673 *
674 * @returns iprt status code.
675 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
676 * @param File Handle to the file.
677 * @param offLock Offset of lock start.
678 * @param cbLock Length of region to unlock, may overlap the end of file.
679 */
680RTR3DECL(int) RTFileUnlock(RTFILE File, int64_t offLock, uint64_t cbLock);
681
682
683/**
684 * Query information about an open file.
685 *
686 * @returns iprt status code.
687 *
688 * @param File Handle to the file.
689 * @param pObjInfo Object information structure to be filled on successful return.
690 * @param enmAdditionalAttribs Which set of additional attributes to request.
691 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
692 */
693RTR3DECL(int) RTFileQueryInfo(RTFILE File, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
694
695/**
696 * Changes one or more of the timestamps associated of file system object.
697 *
698 * @returns iprt status code.
699 * @retval VERR_NOT_SUPPORTED is returned if the operation isn't supported by
700 * the OS.
701 *
702 * @param File Handle to the file.
703 * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
704 * @param pModificationTime Pointer to the new modifcation time. NULL if not to be changed.
705 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
706 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
707 *
708 * @remark The file system might not implement all these time attributes,
709 * the API will ignore the ones which aren't supported.
710 *
711 * @remark The file system might not implement the time resolution
712 * employed by this interface, the time will be chopped to fit.
713 *
714 * @remark The file system may update the change time even if it's
715 * not specified.
716 *
717 * @remark POSIX can only set Access & Modification and will always set both.
718 */
719RTR3DECL(int) RTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
720 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
721
722/**
723 * Gets one or more of the timestamps associated of file system object.
724 *
725 * @returns iprt status code.
726 * @param File Handle to the file.
727 * @param pAccessTime Where to store the access time. NULL is ok.
728 * @param pModificationTime Where to store the modifcation time. NULL is ok.
729 * @param pChangeTime Where to store the change time. NULL is ok.
730 * @param pBirthTime Where to store the time of birth. NULL is ok.
731 *
732 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileSetTimes().
733 */
734RTR3DECL(int) RTFileGetTimes(RTFILE File, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
735 PRTTIMESPEC pChangeTime, PRTTIMESPEC pBirthTime);
736
737/**
738 * Changes the mode flags of an open file.
739 *
740 * The API requires at least one of the mode flag sets (Unix/Dos) to
741 * be set. The type is ignored.
742 *
743 * @returns iprt status code.
744 * @param File Handle to the file.
745 * @param fMode The new file mode, see @ref grp_rt_fs for details.
746 */
747RTR3DECL(int) RTFileSetMode(RTFILE File, RTFMODE fMode);
748
749/**
750 * Gets the mode flags of an open file.
751 *
752 * @returns iprt status code.
753 * @param File Handle to the file.
754 * @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
755 *
756 * @remark This is wrapper around RTFileQueryInfo()
757 * and exists to complement RTFileSetMode().
758 */
759RTR3DECL(int) RTFileGetMode(RTFILE File, uint32_t *pfMode);
760
761/**
762 * Changes the owner and/or group of an open file.
763 *
764 * @returns iprt status code.
765 * @param File Handle to the file.
766 * @param uid The new file owner user id. Pass NIL_RTUID to leave
767 * this unchanged.
768 * @param gid The new group id. Pass NIL_RTGID to leave this
769 * unchanged.
770 */
771RTR3DECL(int) RTFileSetOwner(RTFILE File, uint32_t uid, uint32_t gid);
772
773/**
774 * Gets the owner and/or group of an open file.
775 *
776 * @returns iprt status code.
777 * @param File Handle to the file.
778 * @param pUid Where to store the owner user id. NULL is ok.
779 * @param pGid Where to store the group id. NULL is ok.
780 *
781 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileGetOwner().
782 */
783RTR3DECL(int) RTFileGetOwner(RTFILE File, uint32_t *pUid, uint32_t *pGid);
784
785/**
786 * Executes an IOCTL on a file descriptor.
787 *
788 * This function is currently only available in L4 and posix environments.
789 * Attemps at calling it from code shared with any other platforms will break things!
790 *
791 * The rational for defining this API is to simplify L4 porting of audio drivers,
792 * and to remove some of the assumptions on RTFILE being a file descriptor on
793 * platforms using the posix file implementation.
794 *
795 * @returns iprt status code.
796 * @param File Handle to the file.
797 * @param iRequest IOCTL request to carry out.
798 * @param pvData IOCTL data.
799 * @param cbData Size of the IOCTL data.
800 * @param piRet Return value of the IOCTL request.
801 */
802RTR3DECL(int) RTFileIoCtl(RTFILE File, unsigned long ulRequest, void *pvData, unsigned cbData, int *piRet);
803
804/**
805 * Query the sizes of a filesystem.
806 *
807 * @returns iprt status code.
808 * @retval VERR_NOT_SUPPORTED is returned if the operation isn't supported by
809 * the OS.
810 *
811 * @param hFile The file handle.
812 * @param pcbTotal Where to store the total filesystem space. (Optional)
813 * @param pcbFree Where to store the remaining free space in the filesystem. (Optional)
814 * @param pcbBlock Where to store the block size. (Optional)
815 * @param pcbSector Where to store the sector size. (Optional)
816 *
817 * @sa RTFsQuerySizes
818 */
819RTR3DECL(int) RTFileQueryFsSizes(RTFILE hFile, PRTFOFF pcbTotal, RTFOFF *pcbFree,
820 uint32_t *pcbBlock, uint32_t *pcbSector);
821
822/**
823 * Reads the file into memory.
824 *
825 * The caller must free the memory using RTFileReadAllFree().
826 *
827 * @returns IPRT status code.
828 * @param pszFilename The name of the file.
829 * @param ppvFile Where to store the pointer to the memory on successful return.
830 * @param pcbFile Where to store the size of the returned memory.
831 *
832 * @remarks Note that this function may be implemented using memory mapping, which means
833 * that the file may remain open until RTFileReadAllFree() is called. It also
834 * means that the return memory may reflect the state of the file when it's
835 * accessed instead of when this call was done. So, in short, don't use this
836 * API for volatile files, then rather use the extended variant with a
837 * yet-to-be-defined flag.
838 */
839RTDECL(int) RTFileReadAll(const char *pszFilename, void **ppvFile, size_t *pcbFile);
840
841/**
842 * Reads the file into memory.
843 *
844 * The caller must free the memory using RTFileReadAllFree().
845 *
846 * @returns IPRT status code.
847 * @param pszFilename The name of the file.
848 * @param off The offset to start reading at.
849 * @param cbMax The maximum number of bytes to read into memory. Specify RTFOFF_MAX
850 * to read to the end of the file.
851 * @param fFlags See RTFILE_RDALL_*.
852 * @param ppvFile Where to store the pointer to the memory on successful return.
853 * @param pcbFile Where to store the size of the returned memory.
854 *
855 * @remarks See the remarks for RTFileReadAll.
856 */
857RTDECL(int) RTFileReadAllEx(const char *pszFilename, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile);
858
859/**
860 * Reads the file into memory.
861 *
862 * The caller must free the memory using RTFileReadAllFree().
863 *
864 * @returns IPRT status code.
865 * @param File The handle to the file.
866 * @param ppvFile Where to store the pointer to the memory on successful return.
867 * @param pcbFile Where to store the size of the returned memory.
868 *
869 * @remarks See the remarks for RTFileReadAll.
870 */
871RTDECL(int) RTFileReadAllByHandle(RTFILE File, void **ppvFile, size_t *pcbFile);
872
873/**
874 * Reads the file into memory.
875 *
876 * The caller must free the memory using RTFileReadAllFree().
877 *
878 * @returns IPRT status code.
879 * @param File The handle to the file.
880 * @param off The offset to start reading at.
881 * @param cbMax The maximum number of bytes to read into memory. Specify RTFOFF_MAX
882 * to read to the end of the file.
883 * @param fFlags See RTFILE_RDALL_*.
884 * @param ppvFile Where to store the pointer to the memory on successful return.
885 * @param pcbFile Where to store the size of the returned memory.
886 *
887 * @remarks See the remarks for RTFileReadAll.
888 */
889RTDECL(int) RTFileReadAllByHandleEx(RTFILE File, RTFOFF off, RTFOFF cbMax, uint32_t fFlags, void **ppvFile, size_t *pcbFile);
890
891/**
892 * Frees the memory returned by one of the RTFileReadAll(), RTFileReadAllEx(),
893 * RTFileReadAllByHandle() and RTFileReadAllByHandleEx() functions.
894 *
895 * @param pvFile Pointer to the memory.
896 * @param cbFile The size of the memory.
897 */
898RTDECL(void) RTFileReadAllFree(void *pvFile, size_t cbFile);
899
900/** @name RTFileReadAllEx and RTFileReadAllHandleEx flags
901 * The open flags are ignored by RTFileReadAllHandleEx.
902 * @{ */
903#define RTFILE_RDALL_O_DENY_NONE RTFILE_O_DENY_NONE
904#define RTFILE_RDALL_O_DENY_READ RTFILE_O_DENY_READ
905#define RTFILE_RDALL_O_DENY_WRITE RTFILE_O_DENY_WRITE
906#define RTFILE_RDALL_O_DENY_READWRITE RTFILE_O_DENY_READWRITE
907#define RTFILE_RDALL_O_DENY_ALL RTFILE_O_DENY_ALL
908#define RTFILE_RDALL_O_DENY_NOT_DELETE RTFILE_O_DENY_NOT_DELETE
909#define RTFILE_RDALL_O_DENY_MASK RTFILE_O_DENY_MASK
910/** Mask of valid flags. */
911#define RTFILE_RDALL_VALID_MASK RTFILE_RDALL_O_DENY_MASK
912/** @} */
913
914
915/** @page pg_rt_asyncio RT File async I/O API
916 *
917 * File operations are usually blocking the calling thread until
918 * they completed making it impossible to let the thread do anything
919 * else in-between.
920 * The RT File async I/O API provides an easy and efficient way to
921 * access files asynchronously using the native facilities provided
922 * by each operating system.
923 *
924 * @section sec_rt_asyncio_objects Objects
925 *
926 * There are two objects used in this API.
927 * The first object is the request. A request contains every information
928 * needed two complete the file operation successfully like the start offset
929 * and pointer to the source or destination buffer.
930 * Requests are created with RTFileAioReqCreate() and destroyed with
931 * RTFileAioReqDestroy().
932 * Because creating a request may require allocating various operating
933 * system dependent resources and may be quite expensive it is possible
934 * to use a request more than once to save CPU cycles.
935 * A request is constructed with either RTFileAioReqPrepareRead()
936 * which will set up a request to read from the given file or
937 * RTFileAioReqPrepareWrite() which will write to a given file.
938 *
939 * The second object is the context. A file is associated with a context
940 * and requests for this file may complete only on the context the file
941 * was associated with and not on the context given in RTFileAioCtxSubmit()
942 * (see below for further information).
943 * RTFileAioCtxWait() is used to wait for completion of requests which were
944 * associated with the context. While waiting for requests the thread can not
945 * respond to global state changes. That's why the API provides a way to let
946 * RTFileAioCtxWait() return immediately no matter how many requests
947 * have finished through RTFileAioCtxWakeup(). The return code is
948 * VERR_INTERRUPTED to let the thread know that he got interrupted.
949 *
950 * @section sec_rt_asyncio_request_states Request states
951 *
952 * Created:
953 * After a request was created with RTFileAioReqCreate() it is in the same state
954 * like it just completed successfully. RTFileAioReqGetRC() will return VINF_SUCCESS
955 * and a transfer size of 0. RTFileAioReqGetUser() will return NULL. The request can be
956 * destroyed RTFileAioReqDestroy(). It is also allowed to prepare a the request
957 * for a data transfer with the RTFileAioReqPrepare* methods.
958 * Calling any other method like RTFileAioCtxSubmit() will return VERR_FILE_AIO_NOT_PREPARED
959 * and RTFileAioReqCancel() returns VERR_FILE_AIO_NOT_SUBMITTED.
960 *
961 * Prepared:
962 * A request will enter this state if one of the RTFileAioReqPrepare* methods
963 * is called. In this state you can still destroy and retrieve the user data
964 * associated with the request but trying to cancel the request or getting
965 * the result of the operation will return VERR_FILE_AIO_NOT_SUBMITTED.
966 *
967 * Submitted:
968 * A prepared request can be submitted with RTFileAioCtxSubmit(). If the operation
969 * succeeds it is not allowed to touch the request or free any resources until
970 * it completed through RTFileAioCtxWait(). The only allowed method is RTFileAioReqCancel()
971 * which tries to cancel the request. The request will go into the completed state
972 * and RTFileAioReqGetRC() will return VERR_FILE_AIO_CANCELED.
973 * If the request completes not matter if successfully or with an error it will
974 * switch into the completed state. RTFileReqDestroy() fails if the given request
975 * is in this state.
976 *
977 * Completed:
978 * The request will be in this state after it completed and returned through
979 * RTFileAioCtxWait(). RTFileAioReqGetRC() returns the final result code
980 * and the number of bytes transferred.
981 * The request can be used for new data transfers.
982 *
983 * @section sec_rt_asyncio_threading Threading
984 *
985 * The API is a thin wrapper around the specific host OS APIs and therefore
986 * relies on the thread safety of the underlying API.
987 * The interesting functions with regards to thread safety are RTFileAioCtxSubmit()
988 * and RTFileAioCtxWait(). RTFileAioCtxWait() must not be called from different
989 * threads at the same time with the same context handle. The same applies to
990 * RTFileAioCtxSubmit(). However it is possible to submit new requests from a different
991 * thread while waiting for completed requests on another thread with RTFileAioCtxWait().
992 *
993 * @section sec_rt_asyncio_implementations Differences in implementation
994 *
995 * Because the host APIs are quite different on every OS and every API has other limitations
996 * there are some things to consider to make the code as portable as possible.
997 *
998 * The first restriction at the moment is that every buffer has to be aligned to a 512 byte boundary.
999 * This limitation comes from the Linux io_* interface. To use the interface the file
1000 * must be opened with O_DIRECT. This flag disables the kernel cache too which may
1001 * degrade performance but is unfortunately the only way to make asynchronous
1002 * I/O work till today (if O_DIRECT is omitted io_submit will revert to sychronous behavior
1003 * and will return when the requests finished and when they are queued).
1004 * It is mostly used by DBMS which do theire own caching.
1005 * Furthermore there is no filesystem independent way to discover the restrictions at least
1006 * for the 2.4 kernel series. Since 2.6 the 512 byte boundary seems to be used by all
1007 * file systems. So Linus comment about this flag is comprehensible but Linux
1008 * lacks an alternative at the moment.
1009 *
1010 * The next limitation applies only to Windows. Requests are not associated with the
1011 * I/O context they are associated with but with the file the request is for.
1012 * The file needs to be associated with exactly one I/O completion port and requests
1013 * for this file will only arrive at that context after they completed and not on
1014 * the context the request was submitted.
1015 * To associate a file with a specific context RTFileAioCtxAssociateWithFile() is
1016 * used. It is only implemented on Windows and does nothing on the other platforms.
1017 * If the file needs to be associated with different context for some reason
1018 * the file must be closed first. After it was opened again the new context
1019 * can be associated with the other context.
1020 * This can't be done by the API because there is no way to retrieve the flags
1021 * the file was opened with.
1022 */
1023
1024/**
1025 * Global limits for the AIO API.
1026 */
1027typedef struct RTFILEAIOLIMITS
1028{
1029 /** Global number of simultaneous outstanding requests allowed.
1030 * RTFILEAIO_UNLIMITED_REQS means no limit. */
1031 uint32_t cReqsOutstandingMax;
1032 /** The alignment data buffers need to have.
1033 * 0 means no alignment restrictions. */
1034 uint32_t cbBufferAlignment;
1035} RTFILEAIOLIMITS;
1036/** A pointer to a AIO limits structure. */
1037typedef RTFILEAIOLIMITS *PRTFILEAIOLIMITS;
1038
1039/**
1040 * Returns the global limits for the AIO API.
1041 *
1042 * @returns IPRT status code.
1043 * @retval VERR_NOT_SUPPORTED if the host does not support the async I/O API.
1044 *
1045 * @param pAioLimits Where to store the global limit information.
1046 */
1047RTDECL(int) RTFileAioGetLimits(PRTFILEAIOLIMITS pAioLimits);
1048
1049/**
1050 * Creates an async I/O request handle.
1051 *
1052 * @returns IPRT status code.
1053 * @param phReq Where to store the request handle.
1054 */
1055RTDECL(int) RTFileAioReqCreate(PRTFILEAIOREQ phReq);
1056
1057/**
1058 * Destroys an async I/O request handle.
1059 *
1060 * @returns IPRT status code.
1061 * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
1062 *
1063 * @param hReq The request handle.
1064 */
1065RTDECL(int) RTFileAioReqDestroy(RTFILEAIOREQ hReq);
1066
1067/**
1068 * Prepares an async read request.
1069 *
1070 * @returns IPRT status code.
1071 * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
1072 *
1073 * @param hReq The request handle.
1074 * @param hFile The file to read from.
1075 * @param off The offset to start reading at.
1076 * @param pvBuf Where to store the read bits.
1077 * @param cbRead Number of bytes to read.
1078 * @param pvUser Opaque user data associated with this request which
1079 * can be retrieved with RTFileAioReqGetUser().
1080 */
1081RTDECL(int) RTFileAioReqPrepareRead(RTFILEAIOREQ hReq, RTFILE hFile, RTFOFF off,
1082 void *pvBuf, size_t cbRead, void *pvUser);
1083
1084/**
1085 * Prepares an async write request.
1086 *
1087 * @returns IPRT status code.
1088 * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
1089 *
1090 * @param hReq The request handle.
1091 * @param hFile The file to write to.
1092 * @param off The offset to start writing at.
1093 * @param pvBuf The bits to write.
1094 * @param cbWrite Number of bytes to write.
1095 * @param pvUser Opaque user data associated with this request which
1096 * can be retrieved with RTFileAioReqGetUser().
1097 */
1098RTDECL(int) RTFileAioReqPrepareWrite(RTFILEAIOREQ hReq, RTFILE hFile, RTFOFF off,
1099 void const *pvBuf, size_t cbWrite, void *pvUser);
1100
1101/**
1102 * Prepares an async flush of all cached data associated with a file handle.
1103 *
1104 * @returns IPRT status code.
1105 * @retval VERR_FILE_AIO_IN_PROGRESS if the request is still in progress.
1106 *
1107 * @param hReq The request handle.
1108 * @param hFile The file to flush.
1109 * @param pvUser Opaque user data associated with this request which
1110 * can be retrieved with RTFileAioReqGetUser().
1111 *
1112 * @remarks May also flush other caches on some platforms.
1113 */
1114RTDECL(int) RTFileAioReqPrepareFlush(RTFILEAIOREQ hReq, RTFILE hFile, void *pvUser);
1115
1116/**
1117 * Gets the opaque user data associated with the given request.
1118 *
1119 * @returns Opaque user data.
1120 * @retval NULL if the request hasn't been prepared yet.
1121 *
1122 * @param hReq The request handle.
1123 */
1124RTDECL(void *) RTFileAioReqGetUser(RTFILEAIOREQ hReq);
1125
1126/**
1127 * Cancels a pending request.
1128 *
1129 * @returns IPRT status code.
1130 * @retval VINF_SUCCESS If the request was canceled.
1131 * @retval VERR_FILE_AIO_NOT_SUBMITTED If the request wasn't submitted yet.
1132 * @retval VERR_FILE_AIO_IN_PROGRESS If the request could not be canceled because it is already processed.
1133 * @retval VERR_FILE_AIO_COMPLETED If the request could not be canceled because it already completed.
1134 *
1135 * @param hReq The request to cancel.
1136 */
1137RTDECL(int) RTFileAioReqCancel(RTFILEAIOREQ hReq);
1138
1139/**
1140 * Gets the status of a completed request.
1141 *
1142 * @returns The IPRT status code of the given request.
1143 * @retval VERR_FILE_AIO_NOT_SUBMITTED if the request wasn't submitted yet.
1144 * @retval VERR_FILE_AIO_CANCELED if the request was canceled.
1145 * @retval VERR_FILE_AIO_IN_PROGRESS if the request isn't yet completed.
1146 *
1147 * @param hReq The request handle.
1148 * @param pcbTransferred Where to store the number of bytes transferred.
1149 * Optional since it is not relevant for all kinds of
1150 * requests.
1151 */
1152RTDECL(int) RTFileAioReqGetRC(RTFILEAIOREQ hReq, size_t *pcbTransferred);
1153
1154
1155
1156/**
1157 * Creates an async I/O context.
1158 *
1159 * @todo briefly explain what an async context is here or in the page
1160 * above.
1161 *
1162 * @returns IPRT status code.
1163 * @param phAioCtx Where to store the async I/O context handle.
1164 * @param cAioReqsMax How many async I/O requests the context should be capable
1165 * to handle. Pass RTFILEAIO_UNLIMITED_REQS if the
1166 * context should support an unlimited number of
1167 * requests.
1168 */
1169RTDECL(int) RTFileAioCtxCreate(PRTFILEAIOCTX phAioCtx, uint32_t cAioReqsMax);
1170
1171/** Unlimited number of requests.
1172 * Used with RTFileAioCtxCreate and RTFileAioCtxGetMaxReqCount. */
1173#define RTFILEAIO_UNLIMITED_REQS UINT32_MAX
1174
1175/**
1176 * Destroys an async I/O context.
1177 *
1178 * @returns IPRT status code.
1179 * @param hAioCtx The async I/O context handle.
1180 */
1181RTDECL(int) RTFileAioCtxDestroy(RTFILEAIOCTX hAioCtx);
1182
1183/**
1184 * Get the maximum number of requests one aio context can handle.
1185 *
1186 * @returns Maximum number of tasks the context can handle.
1187 * RTFILEAIO_UNLIMITED_REQS if there is no limit.
1188 *
1189 * @param hAioCtx The async I/O context handle.
1190 * If NIL_RTAIOCONTEXT is passed the maximum value
1191 * which can be passed to RTFileAioCtxCreate()
1192 * is returned.
1193 */
1194RTDECL(uint32_t) RTFileAioCtxGetMaxReqCount(RTFILEAIOCTX hAioCtx);
1195
1196/**
1197 * Associates a file with a async I/O context.
1198 * Requests for this file will arrive at the completion port
1199 * associated with the file.
1200 *
1201 * @returns IPRT status code.
1202 *
1203 * @param hAioCtx The async I/O context handle.
1204 * @param hFile The file handle.
1205 */
1206RTDECL(int) RTFileAioCtxAssociateWithFile(RTFILEAIOCTX hAioCtx, RTFILE hFile);
1207
1208/**
1209 * Submits a set of requests to an async I/O context for processing.
1210 *
1211 * @returns IPRT status code.
1212 * @returns VERR_FILE_AIO_INSUFFICIENT_RESSOURCES if the maximum number of
1213 * simultaneous outstanding requests would be exceeded.
1214 *
1215 * @param hAioCtx The async I/O context handle.
1216 * @param pahReqs Pointer to an array of request handles.
1217 * @param cReqs The number of entries in the array.
1218 *
1219 * @remarks It is possible that some requests could be submitted successfully
1220 * even if the method returns an error code. In that case RTFileAioReqGetRC()
1221 * can be used to determine the status of a request.
1222 * If it returns VERR_FILE_AIO_IN_PROGRESS it was submitted successfully.
1223 * Any other error code may indicate why the request failed.
1224 * VERR_FILE_AIO_NOT_SUBMITTED indicates that a request wasn't submitted
1225 * probably because the previous request encountered an error.
1226 *
1227 * @remarks @a cReqs uses the type size_t while it really is a uint32_t, this is
1228 * to avoid annoying warnings when using RT_ELEMENTS and similar
1229 * macros.
1230 */
1231RTDECL(int) RTFileAioCtxSubmit(RTFILEAIOCTX hAioCtx, PRTFILEAIOREQ pahReqs, size_t cReqs);
1232
1233/**
1234 * Waits for request completion.
1235 *
1236 * Only one thread at a time may call this API on a context.
1237 *
1238 * @returns IPRT status code.
1239 * @retval VERR_INVALID_POINTER If pcReqs or/and pahReqs are invalid.
1240 * @retval VERR_INVALID_HANDLE If hAioCtx is invalid.
1241 * @retval VERR_OUT_OF_RANGE If cMinReqs is larger than cReqs.
1242 * @retval VERR_INVALID_PARAMETER If cReqs is 0.
1243 * @retval VERR_TIMEOUT If cMinReqs didn't complete before the
1244 * timeout expired.
1245 * @retval VERR_INTERRUPTED If the completion context was interrupted
1246 * by RTFileAioCtxWakeup().
1247 * @retval VERR_FILE_AIO_NO_REQUEST If there are no pending request.
1248 *
1249 * @param hAioCtx The async I/O context handle to wait and get
1250 * completed requests from.
1251 * @param cMinReqs The minimum number of requests which have to
1252 * complete before this function returns.
1253 * @param cMillies The number of milliseconds to wait before returning
1254 * VERR_TIMEOUT. Use RT_INDEFINITE_WAIT to wait
1255 * forever.
1256 * @param pahReqs Pointer to an array where the handles of the
1257 * completed requests will be stored on success.
1258 * @param cReqs The number of entries @a pahReqs can hold.
1259 * @param pcReqs Where to store the number of returned (complete)
1260 * requests. This will always be set.
1261 *
1262 * @remarks The wait will be resume if interrupted by a signal. An
1263 * RTFileAioCtxWaitNoResume variant can be added later if it becomes
1264 * necessary.
1265 *
1266 * @remarks @a cMinReqs and @a cReqs use the type size_t while they really are
1267 * uint32_t's, this is to avoid annoying warnings when using
1268 * RT_ELEMENTS and similar macros.
1269 */
1270RTDECL(int) RTFileAioCtxWait(RTFILEAIOCTX hAioCtx, size_t cMinReqs, RTMSINTERVAL cMillies,
1271 PRTFILEAIOREQ pahReqs, size_t cReqs, uint32_t *pcReqs);
1272
1273/**
1274 * Forces any RTFileAioCtxWait() call on another thread to return immediately.
1275 *
1276 * @returns IPRT status code.
1277 *
1278 * @param hAioCtx The handle of the async I/O context to wakeup.
1279 */
1280RTDECL(int) RTFileAioCtxWakeup(RTFILEAIOCTX hAioCtx);
1281
1282#endif /* IN_RING3 */
1283
1284/** @} */
1285
1286RT_C_DECLS_END
1287
1288#endif
1289
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette