VirtualBox

source: vbox/trunk/include/iprt/stream.h@ 44528

Last change on this file since 44528 was 44528, checked in by vboxsync, 12 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.0 KB
Line 
1/** @file
2 * IPRT - I/O Stream.
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_stream_h
27#define ___iprt_stream_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/stdarg.h>
32
33RT_C_DECLS_BEGIN
34
35/** @defgroup grp_rt_stream RTStrm - File Streams
36 * @ingroup grp_rt
37 * @{
38 */
39
40/** Pointer to a stream. */
41typedef struct RTSTREAM *PRTSTREAM;
42
43/** Pointer to the standard input stream. */
44extern RTDATADECL(PRTSTREAM) g_pStdIn;
45
46/** Pointer to the standard error stream. */
47extern RTDATADECL(PRTSTREAM) g_pStdErr;
48
49/** Pointer to the standard output stream. */
50extern RTDATADECL(PRTSTREAM) g_pStdOut;
51
52
53/**
54 * Opens a file stream.
55 *
56 * @returns iprt status code.
57 * @param pszFilename Path to the file to open.
58 * @param pszMode The open mode. See fopen() standard.
59 * Format: <a|r|w>[+][b|t]
60 * @param ppStream Where to store the opened stream.
61 */
62RTR3DECL(int) RTStrmOpen(const char *pszFilename, const char *pszMode, PRTSTREAM *ppStream);
63
64/**
65 * Opens a file stream.
66 *
67 * @returns iprt status code.
68 * @param pszMode The open mode. See fopen() standard.
69 * Format: <a|r|w>[+][b|t]
70 * @param ppStream Where to store the opened stream.
71 * @param pszFilenameFmt Filename path format string.
72 * @param args Arguments to the format string.
73 */
74RTR3DECL(int) RTStrmOpenFV(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, va_list args);
75
76/**
77 * Opens a file stream.
78 *
79 * @returns iprt status code.
80 * @param pszMode The open mode. See fopen() standard.
81 * Format: <a|r|w>[+][b|t]
82 * @param ppStream Where to store the opened stream.
83 * @param pszFilenameFmt Filename path format string.
84 * @param ... Arguments to the format string.
85 */
86RTR3DECL(int) RTStrmOpenF(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, ...);
87
88/**
89 * Closes the specified stream.
90 *
91 * @returns iprt status code.
92 * @param pStream The stream to close.
93 */
94RTR3DECL(int) RTStrmClose(PRTSTREAM pStream);
95
96/**
97 * Get the pending error of the stream.
98 *
99 * @returns iprt status code. of the stream.
100 * @param pStream The stream.
101 */
102RTR3DECL(int) RTStrmError(PRTSTREAM pStream);
103
104/**
105 * Clears stream error condition.
106 *
107 * All stream operations save RTStrmClose and this will fail
108 * while an error is asserted on the stream
109 *
110 * @returns iprt status code.
111 * @param pStream The stream.
112 */
113RTR3DECL(int) RTStrmClearError(PRTSTREAM pStream);
114
115/**
116 * Changes the stream mode.
117 *
118 * @returns iprt status code.
119 * @param pStream The stream.
120 * @param fBinary The desired binary (@c true) / text mode (@c false).
121 * Pass -1 to leave it unchanged.
122 * @param fCurrentCodeSet Whether converting the stream from UTF-8 to the
123 * current code set is desired (@c true) or not (@c
124 * false). Pass -1 to leave this property unchanged.
125 */
126RTR3DECL(int) RTStrmSetMode(PRTSTREAM pStream, int fBinary, int fCurrentCodeSet);
127
128/**
129 * Rewinds the stream.
130 *
131 * Stream errors will be reset on success.
132 *
133 * @returns IPRT status code.
134 *
135 * @param pStream The stream.
136 *
137 * @remarks Not all streams are rewindable and that behavior is currently
138 * undefined for those.
139 */
140RTR3DECL(int) RTStrmRewind(PRTSTREAM pStream);
141
142/**
143 * Reads from a file stream.
144 *
145 * @returns iprt status code.
146 * @param pStream The stream.
147 * @param pvBuf Where to put the read bits.
148 * Must be cbRead bytes or more.
149 * @param cbRead Number of bytes to read.
150 * @param pcbRead Where to store the number of bytes actually read.
151 * If NULL cbRead bytes are read or an error is returned.
152 */
153RTR3DECL(int) RTStrmReadEx(PRTSTREAM pStream, void *pvBuf, size_t cbRead, size_t *pcbRead);
154
155/**
156 * Writes to a file stream.
157 *
158 * @returns iprt status code.
159 * @param pStream The stream.
160 * @param pvBuf Where to get the bits to write from.
161 * @param cbWrite Number of bytes to write.
162 * @param pcbWritten Where to store the number of bytes actually written.
163 * If NULL cbWrite bytes are written or an error is returned.
164 */
165RTR3DECL(int) RTStrmWriteEx(PRTSTREAM pStream, const void *pvBuf, size_t cbWrite, size_t *pcbWritten);
166
167/**
168 * Reads from a file stream.
169 *
170 * @returns iprt status code.
171 * @param pStream The stream.
172 * @param pvBuf Where to put the read bits.
173 * Must be cbRead bytes or more.
174 * @param cbRead Number of bytes to read.
175 */
176DECLINLINE(int) RTStrmRead(PRTSTREAM pStream, void *pvBuf, size_t cbRead)
177{
178 return RTStrmReadEx(pStream, pvBuf, cbRead, NULL);
179}
180
181/**
182 * Writes to a file stream.
183 *
184 * @returns iprt status code.
185 * @param pStream The stream.
186 * @param pvBuf Where to get the bits to write from.
187 * @param cbWrite Number of bytes to write.
188 */
189DECLINLINE(int) RTStrmWrite(PRTSTREAM pStream, const void *pvBuf, size_t cbWrite)
190{
191 return RTStrmWriteEx(pStream, pvBuf, cbWrite, NULL);
192}
193
194/**
195 * Reads a character from a file stream.
196 *
197 * @returns The char as an unsigned char cast to int.
198 * @returns -1 on failure.
199 * @param pStream The stream.
200 */
201RTR3DECL(int) RTStrmGetCh(PRTSTREAM pStream);
202
203/**
204 * Writes a character to a file stream.
205 *
206 * @returns iprt status code.
207 * @param pStream The stream.
208 * @param ch The char to write.
209 */
210RTR3DECL(int) RTStrmPutCh(PRTSTREAM pStream, int ch);
211
212/**
213 * Writes a string to a file stream.
214 *
215 * @returns iprt status code.
216 * @param pStream The stream.
217 * @param pszString The string to write.
218 * No newlines or anything is appended or prepended.
219 * The terminating '\\0' is not written, of course.
220 */
221RTR3DECL(int) RTStrmPutStr(PRTSTREAM pStream, const char *pszString);
222
223/**
224 * Reads a line from a file stream.
225 *
226 * A line ends with a '\\n', '\\r\\n', '\\0' or the end of the file.
227 *
228 * @returns iprt status code.
229 * @retval VINF_BUFFER_OVERFLOW if the buffer wasn't big enough to read an
230 * entire line.
231 * @retval VERR_BUFFER_OVERFLOW if a lone '\\r' was encountered at the end of
232 * the buffer and we ended up dropping the following character.
233 *
234 * @param pStream The stream.
235 * @param pszString Where to store the line.
236 * The line will *NOT* contain any '\\n'.
237 * @param cbString The size of the string buffer.
238 */
239RTR3DECL(int) RTStrmGetLine(PRTSTREAM pStream, char *pszString, size_t cbString);
240
241/**
242 * Flushes a stream.
243 *
244 * @returns iprt status code.
245 * @param pStream The stream to flush.
246 */
247RTR3DECL(int) RTStrmFlush(PRTSTREAM pStream);
248
249/**
250 * Prints a formatted string to the specified stream.
251 *
252 * @returns Number of bytes printed.
253 * @param pStream The stream to print to.
254 * @param pszFormat Runtime format string.
255 * @param ... Arguments specified by pszFormat.
256 */
257RTR3DECL(int) RTStrmPrintf(PRTSTREAM pStream, const char *pszFormat, ...);
258
259/**
260 * Prints a formatted string to the specified stream.
261 *
262 * @returns Number of bytes printed.
263 * @param pStream The stream to print to.
264 * @param pszFormat Runtime format string.
265 * @param args Arguments specified by pszFormat.
266 */
267RTR3DECL(int) RTStrmPrintfV(PRTSTREAM pStream, const char *pszFormat, va_list args);
268
269/**
270 * Prints a formatted string to the standard output stream (g_pStdOut).
271 *
272 * @returns Number of bytes printed.
273 * @param pszFormat Runtime format string.
274 * @param ... Arguments specified by pszFormat.
275 */
276RTR3DECL(int) RTPrintf(const char *pszFormat, ...);
277
278/**
279 * Prints a formatted string to the standard output stream (g_pStdOut).
280 *
281 * @returns Number of bytes printed.
282 * @param pszFormat Runtime format string.
283 * @param args Arguments specified by pszFormat.
284 */
285RTR3DECL(int) RTPrintfV(const char *pszFormat, va_list args);
286
287/** @} */
288
289RT_C_DECLS_END
290
291#endif
292
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