1 | /* $Id: fileio-at-generic.cpp 77209 2019-02-07 23:46:50Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - File I/O, RTFileReadAt and RTFileWriteAt, generic.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2019 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.alldomusa.eu.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include "internal/iprt.h"
|
---|
32 | #include <iprt/file.h>
|
---|
33 |
|
---|
34 | #include <iprt/errcore.h>
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 | /**
|
---|
39 | * Read bytes from a file at a given offset.
|
---|
40 | * This function may modify the file position.
|
---|
41 | *
|
---|
42 | * @returns iprt status code.
|
---|
43 | * @param File Handle to the file.
|
---|
44 | * @param off Where to read.
|
---|
45 | * @param pvBuf Where to put the bytes we read.
|
---|
46 | * @param cbToRead How much to read.
|
---|
47 | * @param *pcbRead How much we actually read.
|
---|
48 | * If NULL an error will be returned for a partial read.
|
---|
49 | */
|
---|
50 | RTDECL(int) RTFileReadAt(RTFILE File, RTFOFF off, void *pvBuf, size_t cbToRead, size_t *pcbRead)
|
---|
51 | {
|
---|
52 | int rc = RTFileSeek(File, off, RTFILE_SEEK_BEGIN, NULL);
|
---|
53 | if (RT_SUCCESS(rc))
|
---|
54 | rc = RTFileRead(File, pvBuf, cbToRead, pcbRead);
|
---|
55 | return rc;
|
---|
56 | }
|
---|
57 |
|
---|
58 |
|
---|
59 | /**
|
---|
60 | * Write bytes to a file at a given offset.
|
---|
61 | * This function may modify the file position.
|
---|
62 | *
|
---|
63 | * @returns iprt status code.
|
---|
64 | * @param File Handle to the file.
|
---|
65 | * @param off Where to write.
|
---|
66 | * @param pvBuf What to write.
|
---|
67 | * @param cbToWrite How much to write.
|
---|
68 | * @param *pcbWritten How much we actually wrote.
|
---|
69 | * If NULL an error will be returned for a partial write.
|
---|
70 | */
|
---|
71 | RTDECL(int) RTFileWriteAt(RTFILE File, RTFOFF off, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten)
|
---|
72 | {
|
---|
73 | int rc = RTFileSeek(File, off, RTFILE_SEEK_BEGIN, NULL);
|
---|
74 | if (RT_SUCCESS(rc))
|
---|
75 | rc = RTFileWrite(File, pvBuf, cbToWrite, pcbWritten);
|
---|
76 | return rc;
|
---|
77 | }
|
---|
78 |
|
---|