VirtualBox

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

Last change on this file since 129 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 21.4 KB
Line 
1/** @file
2 * InnoTek Portable Runtime - File I/O.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef __iprt_file_h__
22#define __iprt_file_h__
23
24#include <iprt/cdefs.h>
25#include <iprt/types.h>
26#ifdef IN_RING3
27# include <iprt/fs.h>
28#endif
29
30/** @todo rename this file to iprt/file.h */
31
32__BEGIN_DECLS
33
34/** @defgroup grp_rt_fileio RTFile - File I/O
35 * @ingroup grp_rt
36 * @{
37 */
38
39/** Platform specific text line break.
40 * @deprecated Use text I/O streams and '\\n'. See iprt/stream.h. */
41#if defined(__OS2__) || defined(__WIN__)
42# define RTFILE_LINEFEED "\r\n"
43#else
44# define RTFILE_LINEFEED "\n"
45#endif
46
47
48#ifdef IN_RING3
49
50/** @name Open flags
51 * @{ */
52/** Open the file with read access. */
53#define RTFILE_O_READ 0x00000001
54/** Open the file with write access. */
55#define RTFILE_O_WRITE 0x00000002
56/** Open the file with read & write access. */
57#define RTFILE_O_READWRITE 0x00000003
58/** The file access mask.
59 * @remark The value 0 is invalid. */
60#define RTFILE_O_ACCESS_MASK 0x00000003
61
62/** Sharing mode: deny none (the default mode). */
63#define RTFILE_O_DENY_NONE 0x00000000
64/** Sharing mode: deny read. */
65#define RTFILE_O_DENY_READ 0x00000010
66/** Sharing mode: deny write. */
67#define RTFILE_O_DENY_WRITE 0x00000020
68/** Sharing mode: deny read and write. */
69#define RTFILE_O_DENY_READWRITE 0x00000030
70/** Sharing mode: deny all. */
71#define RTFILE_O_DENY_ALL RTFILE_O_DENY_READWRITE
72/** Sharing mode: do NOT deny delete (NT).
73 * @remark This might not be implemented on all platforms,
74 * and will be defaulted & ignored on those.
75 */
76#define RTFILE_O_DENY_NOT_DELETE 0x00000040
77/** Sharing mode mask. */
78#define RTFILE_O_DENY_MASK 0x00000070
79
80/** Action: Open an existing file (the default action). */
81#define RTFILE_O_OPEN 0x00000000
82/** Action: Create a new file or open an existing one. */
83#define RTFILE_O_OPEN_CREATE 0x00000100
84/** Action: Create a new a file. */
85#define RTFILE_O_CREATE 0x00000200
86/** Action: Create a new file or replace an existing one. */
87#define RTFILE_O_CREATE_REPLACE 0x00000300
88/** Action mask. */
89#define RTFILE_O_ACTION_MASK 0x00000300
90
91/** Truncate the file.
92 * @remark This will not truncate files opened for read-only.
93 * @remark The trunction doesn't have to be atomically, so anyone
94 * else opening the file may be racing us. The caller is
95 * responsible for not causing this race. */
96#define RTFILE_O_TRUNCATE 0x00001000
97/** Make the handle inheritable on RTProcessCreate(/exec). */
98#define RTFILE_O_INHERIT 0x00002000
99/** Open file in non-blocking mode - non-portable.
100 * @remark This flag may not be supported on all platforms, in which
101 * case it's considered an invalid parameter.
102 */
103#define RTFILE_O_NON_BLOCK 0x00004000
104/** Write through directly to disk. Workaround to avoid iSCSI
105 * initiator deadlocks on Windows hosts.
106 * @remark This might not be implemented on all platforms,
107 * and will be ignored on those.
108 */
109#define RTFILE_O_WRITE_THROUGH 0x00008000
110
111/** Mask of all valid flags.
112 * @remark This doesn't validate the access mode properly.
113 */
114#define RTFILE_O_VALID_MASK 0x0000F333
115
116/** @} */
117
118
119/**
120 * Force the use of open flags for all files opened after the setting is
121 * changed. The caller is responsible for not causing races with RTFileOpen().
122 *
123 * @returns iprt status code.
124 * @param fOpenForAccess Access mode to which the set/mask settings apply.
125 * @param fSet Open flags to be forced set.
126 * @param fMask Open flags to be masked out.
127 */
128RTR3DECL(int) RTFileSetForceFlags(unsigned fOpenForAccess, unsigned fSet, unsigned fMask);
129
130/**
131 * Open a file.
132 *
133 * @returns iprt status code.
134 * @param pFile Where to store the handle to the opened file.
135 * @param pszFilename Path to the file which is to be opened. (UTF-8)
136 * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
137 */
138RTR3DECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, unsigned fOpen);
139
140/**
141 * Close a file opened by RTFileOpen().
142 *
143 * @returns iprt status code.
144 * @param File The file handle to close.
145 */
146RTR3DECL(int) RTFileClose(RTFILE File);
147
148/**
149 * Delete a file.
150 *
151 * @returns iprt status code.
152 * @param pszFilename Path to the file which is to be deleted. (UTF-8)
153 * @todo This is a RTPath api!
154 */
155RTR3DECL(int) RTFileDelete(const char *pszFilename);
156
157/** @name Seek flags.
158 * @{ */
159/** Seek from the start of the file. */
160#define RTFILE_SEEK_BEGIN 0x00
161/** Seek from the current file position. */
162#define RTFILE_SEEK_CURRENT 0x01
163/** Seek from the end of the file. */
164#define RTFILE_SEEK_END 0x02
165/** @internal */
166#define RTFILE_SEEK_FIRST RTFILE_SEEK_BEGIN
167/** @internal */
168#define RTFILE_SEEK_LAST RTFILE_SEEK_END
169/** @} */
170
171
172/**
173 * Changes the read & write position in a file.
174 *
175 * @returns iprt status code.
176 * @param File Handle to the file.
177 * @param offSeek Offset to seek.
178 * @param uMethod Seek method, i.e. one of the RTFILE_SEEK_* defines.
179 * @param poffActual Where to store the new file position.
180 * NULL is allowed.
181 */
182RTR3DECL(int) RTFileSeek(RTFILE File, int64_t offSeek, unsigned uMethod, uint64_t *poffActual);
183
184/**
185 * Read bytes from a file.
186 *
187 * @returns iprt status code.
188 * @param File Handle to the file.
189 * @param pvBuf Where to put the bytes we read.
190 * @param cbToRead How much to read.
191 * @param *pcbRead How much we actually read .
192 * If NULL an error will be returned for a partial read.
193 */
194RTR3DECL(int) RTFileRead(RTFILE File, void *pvBuf, unsigned cbToRead, unsigned *pcbRead);
195
196/**
197 * Read bytes from a file at a given offset.
198 * This function may modify the file position.
199 *
200 * @returns iprt status code.
201 * @param File Handle to the file.
202 * @param off Where to read.
203 * @param pvBuf Where to put the bytes we read.
204 * @param cbToRead How much to read.
205 * @param *pcbRead How much we actually read .
206 * If NULL an error will be returned for a partial read.
207 */
208RTR3DECL(int) RTFileReadAt(RTFILE File, RTFOFF off, void *pvBuf, unsigned cbToRead, unsigned *pcbRead);
209
210/**
211 * Write bytes to a file.
212 *
213 * @returns iprt status code.
214 * @param File Handle to the file.
215 * @param pvBuf What to write.
216 * @param cbToWrite How much to write.
217 * @param *pcbWritten How much we actually wrote.
218 * If NULL an error will be returned for a partial write.
219 */
220RTR3DECL(int) RTFileWrite(RTFILE File, const void *pvBuf, unsigned cbToWrite, unsigned *pcbWritten);
221
222/**
223 * Write bytes to a file at a given offset.
224 * This function may modify the file position.
225 *
226 * @returns iprt status code.
227 * @param File Handle to the file.
228 * @param off Where to write.
229 * @param pvBuf What to write.
230 * @param cbToWrite How much to write.
231 * @param *pcbWritten How much we actually wrote.
232 * If NULL an error will be returned for a partial write.
233 */
234RTR3DECL(int) RTFileWriteAt(RTFILE File, RTFOFF off, const void *pvBuf, unsigned cbToWrite, unsigned *pcbWritten);
235
236/**
237 * Flushes the buffers for the specified file.
238 *
239 * @returns iprt status code.
240 * @param File Handle to the file.
241 */
242RTR3DECL(int) RTFileFlush(RTFILE File);
243
244/**
245 * Set the size of the file.
246 *
247 * @returns iprt status code.
248 * @param File Handle to the file.
249 * @param cbSize The new file size.
250 */
251RTR3DECL(int) RTFileSetSize(RTFILE File, uint64_t cbSize);
252
253/**
254 * Query the size of the file.
255 *
256 * @returns iprt status code.
257 * @param File Handle to the file.
258 * @param pcbSize Where to store the filesize.
259 */
260RTR3DECL(int) RTFileGetSize(RTFILE File, uint64_t *pcbSize);
261
262/**
263 * Gets the current file position.
264 *
265 * @returns File offset.
266 * @returns ~0UUL on failure.
267 * @param File Handle to the file.
268 */
269RTDECL(uint64_t) RTFileTell(RTFILE File);
270
271/**
272 * Checks if the supplied handle is valid.
273 *
274 * @returns true if valid.
275 * @returns false if invalid.
276 * @param File The file handle
277 */
278RTR3DECL(bool) RTFileIsValid(RTFILE File);
279
280/**
281 * Copies a file.
282 *
283 * @returns VERR_ALREADY_EXISTS if the destination file exists.
284 * @returns VBox Status code.
285 *
286 * @param pszSrc The path to the source file.
287 * @param pszDst The path to the destination file.
288 * This file will be created.
289 */
290RTDECL(int) RTFileCopy(const char *pszSrc, const char *pszDst);
291
292/**
293 * Copies a file given the handles to both files.
294 *
295 * @returns VBox Status code.
296 *
297 * @param FileSrc The source file. The file position is unaltered.
298 * @param FileDst The destination file.
299 * On successful returns the file position is at the end of the file.
300 * On failures the file position and size is undefined.
301 */
302RTDECL(int) RTFileCopyByHandles(RTFILE FileSrc, RTFILE FileDst);
303
304/**
305 * Copies a file.
306 *
307 * @returns VERR_ALREADY_EXISTS if the destination file exists.
308 * @returns VBox Status code.
309 *
310 * @param pszSrc The path to the source file.
311 * @param pszDst The path to the destination file.
312 * This file will be created.
313 * @param pfnProgress Pointer to callback function for reporting progress.
314 * @param pvUser User argument to pass to pfnProgress along with the completion precentage.
315 */
316RTDECL(int) RTFileCopyEx(const char *pszSrc, const char *pszDst, PFNRTPROGRESS pfnProgress, void *pvUser);
317
318/**
319 * Copies a file given the handles to both files and
320 * provide progress callbacks.
321 *
322 * @returns IPRT status code.
323 *
324 * @param FileSrc The source file. The file position is unaltered.
325 * @param FileDst The destination file.
326 * On successful returns the file position is at the end of the file.
327 * On failures the file position and size is undefined.
328 * @param pfnProgress Pointer to callback function for reporting progress.
329 * @param pvUser User argument to pass to pfnProgress along with the completion precentage.
330 */
331RTDECL(int) RTFileCopyByHandlesEx(RTFILE FileSrc, RTFILE FileDst, PFNRTPROGRESS pfnProgress, void *pvUser);
332
333/**
334 * Renames a file.
335 *
336 * Identical to RTPathRename except that it will ensure that the source is not a directory.
337 *
338 * @returns IPRT status code.
339 * @returns VERR_ALREADY_EXISTS if the destination file exists.
340 *
341 * @param pszSrc The path to the source file.
342 * @param pszDst The path to the destination file.
343 * This file will be created.
344 * @param fRename See RTPathRename.
345 */
346RTDECL(int) RTFileRename(const char *pszSrc, const char *pszDst, unsigned fRename);
347
348
349/** @name RTFileMove flags (bit masks).
350 * @{ */
351/** Replace destination file if present. */
352#define RTFILEMOVE_FLAGS_REPLACE 0x1
353/** @} */
354
355/**
356 * Moves a file.
357 *
358 * RTFileMove differs from RTFileRename in that it works across volumes.
359 *
360 * @returns IPRT status code.
361 * @returns VERR_ALREADY_EXISTS if the destination file exists.
362 *
363 * @param pszSrc The path to the source file.
364 * @param pszDst The path to the destination file.
365 * This file will be created.
366 * @param fMove A combination of the RTFILEMOVE_* flags.
367 */
368RTDECL(int) RTFileMove(const char *pszSrc, const char *pszDst, unsigned fMove);
369
370
371/** @page pg_rt_filelock RT File locking API description
372 *
373 * File locking general rules:
374 *
375 * Region to lock or unlock can be located beyond the end of file, this can be used for
376 * growing files.
377 * Read (or Shared) locks can be acquired held by an unlimited number of processes at the
378 * same time, but a Write (or Exclusive) lock can only be acquired by one process, and
379 * cannot coexist with a Shared lock. To acquire a Read lock, a process must wait until
380 * there are no processes holding any Write locks. To acquire a Write lock, a process must
381 * wait until there are no processes holding either kind of lock.
382 * By default, RTFileLock and RTFileChangeLock calls returns error immediately if the lock
383 * can't be acquired due to conflict with other locks, however they can be called in wait mode.
384 *
385 * Differences in implementation:
386 *
387 * Win32, OS/2: Locking is mandatory, since locks are enforced by the operating system.
388 * I.e. when file region is locked in Read mode, any write in it will fail; in case of Write
389 * lock - region can be readed and writed only by lock's owner.
390 *
391 * Win32: File size change (RTFileSetSize) is not controlled by locking at all (!) in the
392 * operation system. Also see comments to RTFileChangeLock API call.
393 *
394 * Linux/Posix: By default locks in Unixes are advisory. This means that cooperating processes
395 * may use locks to coordonate access to a file between themselves, but programs are also free
396 * to ignore locks and access the file in any way they choose to.
397 *
398 * Additional reading:
399 * http://en.wikipedia.org/wiki/File_locking
400 * http://unixhelp.ed.ac.uk/CGI/man-cgi?fcntl+2
401 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/lockfileex.asp
402 */
403
404/** @name Lock flags (bit masks).
405 * @{ */
406/** Read access, can be shared with others. */
407#define RTFILE_LOCK_READ 0x00
408/** Write access, one at a time. */
409#define RTFILE_LOCK_WRITE 0x01
410/** Don't wait for other locks to be released. */
411#define RTFILE_LOCK_IMMEDIATELY 0x00
412/** Wait till conflicting locks have been released. */
413#define RTFILE_LOCK_WAIT 0x02
414/** Valid flags mask */
415#define RTFILE_LOCK_MASK 0x03
416/** @} */
417
418
419/**
420 * Locks a region of file for read (shared) or write (exclusive) access.
421 *
422 * @returns iprt status code.
423 * @returns VERR_FILE_LOCK_VIOLATION if lock can't be acquired.
424 * @param File Handle to the file.
425 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
426 * @param offLock Offset of lock start.
427 * @param cbLock Length of region to lock, may overlap the end of file.
428 */
429RTR3DECL(int) RTFileLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
430
431/**
432 * Changes a lock type from read to write or from write to read.
433 * The region to type change must correspond exactly to an existing locked region.
434 * If change can't be done due to locking conflict and non-blocking mode is used, error is
435 * returned and lock keeps its state (see next warning).
436 *
437 * WARNING: win32 implementation of this call is not atomic, it transforms to a pair of
438 * calls RTFileUnlock and RTFileLock. Potentially the previously acquired lock can be
439 * lost, i.e. function is called in non-blocking mode, previous lock is freed, new lock can't
440 * be acquired, and old lock (previous state) can't be acquired back too. This situation
441 * may occurs _only_ if the other process is acquiring a _write_ lock in blocking mode or
442 * in race condition with the current call.
443 * In this very bad case special error code VERR_FILE_LOCK_LOST will be returned.
444 *
445 * @returns iprt status code.
446 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
447 * @returns VERR_FILE_LOCK_VIOLATION if lock type can't be changed, lock remains its type.
448 * @returns VERR_FILE_LOCK_LOST if lock was lost, we haven't this lock anymore :(
449 * @param File Handle to the file.
450 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
451 * @param offLock Offset of lock start.
452 * @param cbLock Length of region to lock, may overlap the end of file.
453 */
454RTR3DECL(int) RTFileChangeLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
455
456/**
457 * Unlocks previously locked region of file.
458 * The region to unlock must correspond exactly to an existing locked region.
459 *
460 * @returns iprt status code.
461 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
462 * @param File Handle to the file.
463 * @param offLock Offset of lock start.
464 * @param cbLock Length of region to unlock, may overlap the end of file.
465 */
466RTR3DECL(int) RTFileUnlock(RTFILE File, int64_t offLock, uint64_t cbLock);
467
468
469/**
470 * Query information about an open file.
471 *
472 * @returns iprt status code.
473 *
474 * @param File Handle to the file.
475 * @param pObjInfo Object information structure to be filled on successful return.
476 * @param enmAdditionalAttribs Which set of additional attributes to request.
477 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
478 */
479RTR3DECL(int) RTFileQueryInfo(RTFILE File, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
480
481/**
482 * Changes one or more of the timestamps associated of file system object.
483 *
484 * @returns iprt status code.
485 * @returns VERR_NOT_SUPPORTED is returned if the operation isn't supported by the OS.
486 *
487 * @param File Handle to the file.
488 * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
489 * @param pModificationTime Pointer to the new modifcation time. NULL if not to be changed.
490 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
491 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
492 *
493 * @remark The file system might not implement all these time attributes,
494 * the API will ignore the ones which aren't supported.
495 *
496 * @remark The file system might not implement the time resolution
497 * employed by this interface, the time will be chopped to fit.
498 *
499 * @remark The file system may update the change time even if it's
500 * not specified.
501 *
502 * @remark POSIX can only set Access & Modification and will always set both.
503 */
504RTR3DECL(int) RTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
505 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
506
507/**
508 * Gets one or more of the timestamps associated of file system object.
509 *
510 * @returns iprt status code.
511 * @param File Handle to the file.
512 * @param pAccessTime Where to store the access time. NULL is ok.
513 * @param pModificationTime Where to store the modifcation time. NULL is ok.
514 * @param pChangeTime Where to store the change time. NULL is ok.
515 * @param pBirthTime Where to store the time of birth. NULL is ok.
516 *
517 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileSetTimes().
518 */
519RTR3DECL(int) RTFileGetTimes(RTFILE File, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
520 PRTTIMESPEC pChangeTime, PRTTIMESPEC pBirthTime);
521
522/**
523 * Changes the mode flags of an open file.
524 *
525 * The API requires at least one of the mode flag sets (Unix/Dos) to
526 * be set. The type is ignored.
527 *
528 * @returns iprt status code.
529 * @param File Handle to the file.
530 * @param fMode The new file mode, see @ref grp_rt_fs for details.
531 */
532RTR3DECL(int) RTFileSetMode(RTFILE File, RTFMODE fMode);
533
534/**
535 * Gets the mode flags of an open file.
536 *
537 * @returns iprt status code.
538 * @param File Handle to the file.
539 * @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
540 *
541 * @remark This is wrapper around RTFileQueryInfo()
542 * and exists to complement RTFileSetMode().
543 */
544RTR3DECL(int) RTFileGetMode(RTFILE File, uint32_t *pfMode);
545
546/**
547 * Changes the owner and/or group of an open file.
548 *
549 * @returns iprt status code.
550 * @param File Handle to the file.
551 * @param uid The new file owner user id. Use -1 (or ~0) to leave this unchanged.
552 * @param gid The new group id. Use -1 (or ~0) to leave this unchanged.
553 */
554RTR3DECL(int) RTFileSetOwner(RTFILE File, uint32_t uid, uint32_t gid);
555
556/**
557 * Gets the owner and/or group of an open file.
558 *
559 * @returns iprt status code.
560 * @param File Handle to the file.
561 * @param pUid Where to store the owner user id. NULL is ok.
562 * @param pGid Where to store the group id. NULL is ok.
563 *
564 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileGetOwner().
565 */
566RTR3DECL(int) RTFileGetOwner(RTFILE File, uint32_t *pUid, uint32_t *pGid);
567
568/**
569 * Executes an IOCTL on a file descriptor.
570 *
571 * This function is currently only available in L4 and posix environments.
572 * Attemps at calling it from code shared with any other platforms will break things!
573 *
574 * The rational for defining this API is to simplify L4 porting of audio drivers,
575 * and to remove some of the assumptions on RTFILE being a file descriptor on
576 * platforms using the posix file implementation.
577 *
578 * @returns iprt status code.
579 * @param File Handle to the file.
580 * @param iRequest IOCTL request to carry out.
581 * @param pvData IOCTL data.
582 * @param cbData Size of the IOCTL data.
583 * @param piRet Return value of the IOCTL request.
584 */
585RTR3DECL(int) RTFileIoCtl(RTFILE File, int iRequest, void *pvData, unsigned cbData, int *piRet);
586
587#endif /* IN_RING3 */
588
589/** @} */
590
591__END_DECLS
592
593#endif
594
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