VirtualBox

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

Last change on this file since 6356 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

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