VirtualBox

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

Last change on this file since 204 was 204, checked in by vboxsync, 18 years ago

runtime.h now includes everything. Created a new header, initterm.h, which includes the RT*Init/Term() prototypes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.4 KB
Line 
1/** @file
2 * InnoTek Portable Runtime - I/O Stream.
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_stream_h__
22#define __iprt_stream_h__
23
24#include <iprt/cdefs.h>
25#include <iprt/types.h>
26#include <iprt/stdarg.h>
27
28__BEGIN_DECLS
29
30/** @defgroup grp_rt_stream RTStrm - File Streams
31 * @ingroup grp_rt
32 * @{
33 */
34
35/** Pointer to a stream. */
36typedef struct RTSTREAM *PRTSTREAM;
37
38/** Pointer to the standard input stream. */
39extern RTDATADECL(PRTSTREAM) g_pStdIn;
40
41/** Pointer to the standard error stream. */
42extern RTDATADECL(PRTSTREAM) g_pStdErr;
43
44/** Pointer to the standard output stream. */
45extern RTDATADECL(PRTSTREAM) g_pStdOut;
46
47
48/**
49 * Opens a file stream.
50 *
51 * @returns iprt status code.
52 * @param pszFilename Path to the file to open.
53 * @param pszMode The open mode. See fopen() standard.
54 * Format: <a|r|w>[+][b|t]
55 * @param ppStream Where to store the opened stream.
56 */
57RTR3DECL(int) RTStrmOpen(const char *pszFilename, const char *pszMode, PRTSTREAM *ppStream);
58
59/**
60 * Closes the specified stream.
61 *
62 * @returns iprt status code.
63 * @param pStream The stream to close.
64 */
65RTR3DECL(int) RTStrmClose(PRTSTREAM pStream);
66
67/**
68 * Reads from a file stream.
69 *
70 * @returns iprt status code.
71 * @param pStream The stream.
72 * @param pvBuf Where to put the read bits.
73 * Must be cbRead bytes or more.
74 * @param cbRead Number of bytes to read.
75 * @param pcbRead Where to store the number of bytes actually read.
76 * If NULL cbRead bytes are read or an error is returned.
77 */
78RTR3DECL(int) RTStrmReadEx(PRTSTREAM pStream, void *pvBuf, size_t cbRead, size_t *pcbRead);
79
80/**
81 * Writes to a file stream.
82 *
83 * @returns iprt status code.
84 * @param pStream The stream.
85 * @param pvBuf Where to get the bits to write from.
86 * @param cbWrite Number of bytes to write.
87 * @param pcbWritten Where to store the number of bytes actually written.
88 * If NULL cbWrite bytes are written or an error is returned.
89 */
90RTR3DECL(int) RTStrmWriteEx(PRTSTREAM pStream, const void *pvBuf, size_t cbWrite, size_t *pcbWritten);
91
92/**
93 * Reads from a file stream.
94 *
95 * @returns iprt status code.
96 * @param pStream The stream.
97 * @param pvBuf Where to put the read bits.
98 * Must be cbRead bytes or more.
99 * @param cbRead Number of bytes to read.
100 */
101DECLINLINE(int) RTStrmRead(PRTSTREAM pStream, void *pvBuf, size_t cbRead)
102{
103 return RTStrmReadEx(pStream, pvBuf, cbRead, NULL);
104}
105
106/**
107 * Writes to a file stream.
108 *
109 * @returns iprt status code.
110 * @param pStream The stream.
111 * @param pvBuf Where to get the bits to write from.
112 * @param cbWrite Number of bytes to write.
113 */
114DECLINLINE(int) RTStrmWrite(PRTSTREAM pStream, const void *pvBuf, size_t cbWrite)
115{
116 return RTStrmWriteEx(pStream, pvBuf, cbWrite, NULL);
117}
118
119/**
120 * Reads a character from a file stream.
121 *
122 * @returns The char as an unsigned char cast to int.
123 * @returns -1 on failure.
124 * @param pStream The stream.
125 */
126RTR3DECL(int) RTStrmGetCh(PRTSTREAM pStream);
127
128/**
129 * Writes a character to a file stream.
130 *
131 * @returns iprt status code.
132 * @param pStream The stream.
133 * @param ch The char to write.
134 */
135RTR3DECL(int) RTStrmPutCh(PRTSTREAM pStream, int ch);
136
137/**
138 * Writes a string to a file stream.
139 *
140 * @returns iprt status code.
141 * @param pStream The stream.
142 * @param pszString The string to write.
143 * No newlines or anything is appended or prepended.
144 * The terminating '\\0' is not written, of course.
145 */
146RTR3DECL(int) RTStrmPutStr(PRTSTREAM pStream, const char *pszString);
147
148/**
149 * Reads a line from a file stream.
150 * A line ends with a '\\n', '\\0' or the end of the file.
151 *
152 * @returns iprt status code.
153 * @returns VINF_BUFFER_OVERFLOW if the buffer wasn't big enough to read an entire line.
154 * @param pStream The stream.
155 * @param pszString Where to store the line.
156 * The line will *NOT* contain any '\\n'.
157 * @param cchString The size of the string buffer.
158 */
159RTR3DECL(int) RTStrmGetLine(PRTSTREAM pStream, char *pszString, size_t cchString);
160
161/**
162 * Flushes a stream.
163 *
164 * @returns iprt status code.
165 * @param pStream The stream to flush.
166 */
167RTR3DECL(int) RTStrmFlush(PRTSTREAM pStream);
168
169/**
170 * Prints a formatted string to the specified stream.
171 *
172 * @returns Number of bytes printed.
173 * @param pStream The stream to print to.
174 * @param pszFormat Runtime format string.
175 * @param ... Arguments specified by pszFormat.
176 */
177RTR3DECL(int) RTStrmPrintf(PRTSTREAM pStream, const char *pszFormat, ...);
178
179/**
180 * Prints a formatted string to the specified stream.
181 *
182 * @returns Number of bytes printed.
183 * @param pStream The stream to print to.
184 * @param pszFormat Runtime format string.
185 * @param args Arguments specified by pszFormat.
186 */
187RTR3DECL(int) RTStrmPrintfV(PRTSTREAM pStream, const char *pszFormat, va_list args);
188
189/**
190 * Prints a formatted string to the standard output stream (g_pStdOut).
191 *
192 * @returns Number of bytes printed.
193 * @param pszFormat Runtime format string.
194 * @param ... Arguments specified by pszFormat.
195 */
196RTR3DECL(int) RTPrintf(const char *pszFormat, ...);
197
198/**
199 * Prints a formatted string to the standard output stream (g_pStdOut).
200 *
201 * @returns Number of bytes printed.
202 * @param pszFormat Runtime format string.
203 * @param args Arguments specified by pszFormat.
204 */
205RTR3DECL(int) RTPrintfV(const char *pszFormat, va_list args);
206
207/** @} */
208
209__END_DECLS
210
211#endif
212
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