VirtualBox

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

Last change on this file since 51868 was 49033, checked in by vboxsync, 11 years ago

IPRT: Added RTFileCompare* methods a la RTFileCopy*.

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