]>
git.saurik.com Git - wxWidgets.git/blob - interface/datstrm.h
3d4f17d9818f362e3d203d168e9e2b1a8f3328c9
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxDataOutputStream class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxDataOutputStream
13 This class provides functions that write binary data types in a
14 portable way. Data can be written in either big-endian or little-endian
15 format, little-endian being the default on all architectures.
17 If you want to write data to text files (or streams) use
18 wxTextOutputStream instead.
20 The operator is overloaded and you can use this class like a standard
21 C++ iostream. See wxDataInputStream for its
24 See also wxDataInputStream.
29 class wxDataOutputStream
36 Constructs a datastream object from an output stream. Only write methods will
37 be available. The second form is only available in Unicode build of wxWidgets.
43 Charset conversion object object used to encoding Unicode
44 strings before writing them to the stream
45 in Unicode mode (see WriteString()
46 documentation for detailed description). Note that you must not destroy
47 conv before you destroy this wxDataOutputStream instance! It is
48 recommended to use default value (UTF-8).
50 wxDataOutputStream(wxOutputStream
& stream
);
51 wxDataOutputStream(wxOutputStream
& stream
);
55 Destroys the wxDataOutputStream object.
57 ~wxDataOutputStream();
60 If @e be_order is @true, all data will be written in big-endian
61 order, e.g. for reading on a Sparc or from Java-Streams (which
62 always use big-endian order), otherwise data will be written in
65 void BigEndianOrdered(bool be_order
);
69 Writes an array of 16 bit unsigned integer to the stream. The amount of
70 16 bit unsigned integer to write is specified with the @e size variable.
72 void Write16(wxUint16 i16
);
73 void Write16(const wxUint16
* buffer
, size_t size
);
78 Writes an array of 32 bit unsigned integer to the stream. The amount of
79 32 bit unsigned integer to write is specified with the @e size variable.
81 void Write32(wxUint32 i32
);
82 void Write32(const wxUint32
* buffer
, size_t size
);
87 Writes an array of 64 bit unsigned integer to the stream. The amount of
88 64 bit unsigned integer to write is specified with the @e size variable.
90 void Write64(wxUint64 i64
);
91 void Write64(const wxUint64
* buffer
, size_t size
);
96 Writes an array of bytes to the stream. The amount of bytes to write is
97 specified with the @e size variable.
99 void Write8(wxUint8 i8
);
100 void Write8(const wxUint8
* buffer
, size_t size
);
105 Writes an array of double to the stream. The amount of double to write is
106 specified with the @e size variable.
108 void WriteDouble(double f
);
109 void WriteDouble(const double * buffer
, size_t size
);
113 Writes @e string to the stream. Actually, this method writes the size of
114 the string before writing @e string itself.
116 In ANSI build of wxWidgets, the string is written to the stream in exactly
117 same way it is represented in memory. In Unicode build, however, the string
118 is first converted to multibyte representation with @e conv object passed
119 to stream's constructor (consequently, ANSI application can read data
120 written by Unicode application, as long as they agree on encoding) and this
121 representation is written to the stream. UTF-8 is used by default.
123 void WriteString(const wxString
& string
);
128 @class wxDataInputStream
131 This class provides functions that read binary data types in a
132 portable way. Data can be read in either big-endian or little-endian
133 format, little-endian being the default on all architectures.
135 If you want to read data from text files (or streams) use
136 wxTextInputStream instead.
138 The operator is overloaded and you can use this class like a standard C++
140 Note, however, that the arguments are the fixed size types wxUint32, wxInt32 etc
141 and on a typical 32-bit computer, none of these match to the "long" type
143 is defined as signed int on 32-bit architectures) so that you cannot use long.
145 problems (here and elsewhere), make use of the wxInt32, wxUint32, etc types.
150 wxFileInputStream input( "mytext.dat" );
151 wxDataInputStream store( input );
156 store i1; // read a 8 bit integer.
157 store i1 f2; // read a 8 bit integer followed by float.
158 store line; // read a text line
161 See also wxDataOutputStream.
166 class wxDataInputStream
173 Constructs a datastream object from an input stream. Only read methods will
174 be available. The second form is only available in Unicode build of wxWidgets.
180 Charset conversion object object used to decode strings in Unicode
181 mode (see ReadString()
182 documentation for detailed description). Note that you must not destroy
183 conv before you destroy this wxDataInputStream instance!
185 wxDataInputStream(wxInputStream
& stream
);
186 wxDataInputStream(wxInputStream
& stream
);
190 Destroys the wxDataInputStream object.
192 ~wxDataInputStream();
195 If @e be_order is @true, all data will be read in big-endian
196 order, such as written by programs on a big endian architecture
197 (e.g. Sparc) or written by Java-Streams (which always use
200 void BigEndianOrdered(bool be_order
);
204 Reads 16 bit unsigned integers from the stream in a specified buffer. the
205 amount of 16 bit unsigned integer to read is specified by the @e size variable.
208 void Read16(wxUint16
* buffer
, size_t size
);
213 Reads 32 bit unsigned integers from the stream in a specified buffer. the
215 32 bit unsigned integer to read is specified by the @e size variable.
218 void Read32(wxUint32
* buffer
, size_t size
);
223 Reads 64 bit unsigned integers from the stream in a specified buffer. the
225 64 bit unsigned integer to read is specified by the @e size variable.
228 void Read64(wxUint64
* buffer
, size_t size
);
233 Reads bytes from the stream in a specified buffer. The amount of
234 bytes to read is specified by the @e size variable.
237 void Read8(wxUint8
* buffer
, size_t size
);
242 Reads double data (IEEE encoded) from the stream in a specified buffer. the
244 double to read is specified by the @e size variable.
247 void ReadDouble(double * buffer
, size_t size
);
251 Reads a string from a stream. Actually, this function first reads a long
252 integer specifying the length of the string (without the last null character)
253 and then reads the string.
255 In Unicode build of wxWidgets, the fuction first reads multibyte (char*)
256 string from the stream and then converts it to Unicode using the @e conv
257 object passed to constructor and returns the result as wxString. You are
258 responsible for using the same convertor as when writing the stream.
260 See also wxDataOutputStream::WriteString.
262 wxString
ReadString();