]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/datstrm.h
Explicitly mention that wxDateTime ticks origin is in UTC.
[wxWidgets.git] / interface / wx / datstrm.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: datstrm.h
f09b5681 3// Purpose: interface of wxDataInputStream and wxDataOutputStream
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
526954c5 6// Licence: wxWindows licence
23324ae1
FM
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxDataOutputStream
7c913512 11
f09b5681 12 This class provides functions that write binary data types in a portable
789ab840
VZ
13 way.
14
15 Data can be written in either big-endian or little-endian format,
16 little-endian being the default on all architectures but BigEndianOrdered()
17 can be used to change this. The default format for the floating point types
18 is 80 bit "extended precision" unless @c wxUSE_APPLE_IEEE was turned off
19 during the library compilation, in which case extended precision is not
20 available at all. You can call UseBasicPrecisions() to change this and
21 use the standard IEEE 754 32 bit single precision format for floats and
22 standard 64 bit double precision format for doubles. This is recommended
23 for the new code for better interoperability with other software that
24 typically uses standard IEEE 754 formats for its data, the use of extended
25 precision by default is solely due to backwards compatibility.
7c913512 26
f09b5681
BP
27 If you want to write data to text files (or streams) use wxTextOutputStream
28 instead.
7c913512 29
f09b5681
BP
30 The "<<" operator is overloaded and you can use this class like a standard
31 C++ iostream. See wxDataInputStream for its usage and caveats.
7c913512 32
23324ae1
FM
33 @library{wxbase}
34 @category{streams}
f09b5681
BP
35
36 @see wxDataInputStream
23324ae1 37*/
7c913512 38class wxDataOutputStream
23324ae1
FM
39{
40public:
23324ae1 41 /**
76e9224e
FM
42 Constructs a datastream object from an output stream.
43 Only write methods will be available.
3c4f71cc 44
7323ff1a 45 Note that the @a conv parameter is only available in Unicode builds of wxWidgets.
f09b5681
BP
46
47 @param stream
48 The output stream.
49 @param conv
d13b34d3 50 Charset conversion object used to encoding Unicode strings
f09b5681
BP
51 before writing them to the stream in Unicode mode (see
52 WriteString() for a detailed description). Note that you must not
53 destroy @a conv before you destroy this wxDataOutputStream
54 instance! It is recommended to use the default value (UTF-8).
55 */
56 wxDataOutputStream(wxOutputStream& stream,
107ea8f0 57 const wxMBConv& conv = wxConvUTF8);
23324ae1
FM
58
59 /**
60 Destroys the wxDataOutputStream object.
61 */
62 ~wxDataOutputStream();
63
64 /**
f09b5681
BP
65 If @a be_order is @true, all data will be written in big-endian order,
66 e.g. for reading on a Sparc or from Java-Streams (which always use
67 big-endian order), otherwise data will be written in little-endian
68 order.
23324ae1
FM
69 */
70 void BigEndianOrdered(bool be_order);
be2a424d 71
10c2f98a
RR
72 /**
73 Returns the current text conversion class used for
74 writing strings.
75 */
76 wxMBConv *GetConv() const;
23324ae1 77
be2a424d 78 /**
10c2f98a
RR
79 Sets the text conversion class used for writing strings.
80 */
81 void SetConv( const wxMBConv &conv );
be2a424d 82
789ab840
VZ
83 /**
84 Disables the use of extended precision format for floating point
85 numbers.
86
87 This method disables the use of 80 bit extended precision format for
88 the @c float and @c double values written to the stream, which is used
89 by default (unless @c wxUSE_APPLE_IEEE was set to @c 0 when building
90 the library, in which case the extended format support is not available
91 at all and this function does nothing).
92
93 After calling it, @c float values will be written out in one of IEEE
94 754 "basic formats", i.e. 32 bit single precision format for floats and
95 64 bit double precision format for doubles.
96
97 @since 2.9.5
98 */
99 void UseBasicPrecisions();
100
101 /**
102 Explicitly request the use of extended precision for floating point
103 numbers.
104
105 This function allows the application code to explicitly request the use
106 of 80 bit extended precision format for the floating point numbers.
107 This is the case by default but using this function explicitly ensures
108 that the compilation of code relying on producing the output stream
109 using extended precision would fail when using a version of wxWidgets
110 compiled with @c wxUSE_APPLE_IEEE==0 and so not supporting this format
111 at all.
112
113 @since 2.9.5
114 */
115 void UseExtendedPrecision();
116
f09b5681
BP
117 /**
118 Writes the single byte @a i8 to the stream.
119 */
120 void Write8(wxUint8 i8);
121 /**
be2a424d 122 Writes an array of bytes to the stream. The number of bytes to write is
f09b5681
BP
123 specified with the @a size variable.
124 */
125 void Write8(const wxUint8* buffer, size_t size);
126
127 /**
128 Writes the 16 bit unsigned integer @a i16 to the stream.
129 */
130 void Write16(wxUint16 i16);
23324ae1 131 /**
be2a424d 132 Writes an array of 16 bit unsigned integer to the stream. The number of
4cc4bfaf 133 16 bit unsigned integer to write is specified with the @a size variable.
23324ae1 134 */
4cc4bfaf 135 void Write16(const wxUint16* buffer, size_t size);
23324ae1 136
f09b5681
BP
137 /**
138 Writes the 32 bit unsigned integer @a i32 to the stream.
139 */
140 void Write32(wxUint32 i32);
23324ae1 141 /**
be2a424d 142 Writes an array of 32 bit unsigned integer to the stream. The number of
4cc4bfaf 143 32 bit unsigned integer to write is specified with the @a size variable.
23324ae1 144 */
4cc4bfaf 145 void Write32(const wxUint32* buffer, size_t size);
23324ae1 146
f09b5681
BP
147 /**
148 Writes the 64 bit unsigned integer @a i64 to the stream.
149 */
150 void Write64(wxUint64 i64);
23324ae1 151 /**
be2a424d 152 Writes an array of 64 bit unsigned integer to the stream. The number of
4cc4bfaf 153 64 bit unsigned integer to write is specified with the @a size variable.
23324ae1 154 */
4cc4bfaf 155 void Write64(const wxUint64* buffer, size_t size);
23324ae1 156
23324ae1 157 /**
789ab840
VZ
158 Writes the float @a f to the stream.
159
160 If UseBasicPrecisions() had been called, the value is written out using
161 the standard IEEE 754 32 bit single precision format. Otherwise, this
162 method uses the same format as WriteDouble(), i.e. 80 bit extended
163 precision representation.
164
165 @since 2.9.5
166 */
167 void WriteFloat(float f);
168
169 /**
170 Writes an array of float to the stream. The number of floats to write is
171 specified by the @a size variable.
172
173 @since 2.9.5
174 */
175 void WriteFloat(const float* buffer, size_t size);
176
177 /**
178 Writes the double @a d to the stream.
179
180 The output format is either 80 bit extended precision or, if
181 UseBasicPrecisions() had been called, standard IEEE 754 64 bit double
182 precision.
23324ae1 183 */
337bbb7a 184 void WriteDouble(double d);
789ab840 185
23324ae1 186 /**
be2a424d
VZ
187 Writes an array of double to the stream. The number of doubles to write is
188 specified by the @a size variable.
23324ae1 189 */
4cc4bfaf 190 void WriteDouble(const double* buffer, size_t size);
23324ae1
FM
191
192 /**
f09b5681
BP
193 Writes @a string to the stream. Actually, this method writes the size
194 of the string before writing @a string itself.
195
196 In ANSI build of wxWidgets, the string is written to the stream in
197 exactly same way it is represented in memory. In Unicode build,
198 however, the string is first converted to multibyte representation with
199 @e conv object passed to stream's constructor (consequently, ANSI
200 applications can read data written by Unicode application, as long as
201 they agree on encoding) and this representation is written to the
202 stream. UTF-8 is used by default.
23324ae1
FM
203 */
204 void WriteString(const wxString& string);
205};
206
207
e54c96f1 208
23324ae1
FM
209/**
210 @class wxDataInputStream
7c913512 211
f09b5681 212 This class provides functions that read binary data types in a portable
789ab840
VZ
213 way.
214
215 Please see wxDataOutputStream for the discussion of the format expected by
216 this stream on input, notably for the floating point values.
7c913512 217
f09b5681
BP
218 If you want to read data from text files (or streams) use wxTextInputStream
219 instead.
7c913512 220
f09b5681
BP
221 The ">>" operator is overloaded and you can use this class like a standard
222 C++ iostream. Note, however, that the arguments are the fixed size types
223 wxUint32, wxInt32 etc and on a typical 32-bit computer, none of these match
224 to the "long" type (wxInt32 is defined as signed int on 32-bit
225 architectures) so that you cannot use long. To avoid problems (here and
226 elsewhere), make use of the wxInt32, wxUint32, etc types.
7c913512 227
23324ae1 228 For example:
7c913512 229
23324ae1
FM
230 @code
231 wxFileInputStream input( "mytext.dat" );
f09b5681
BP
232 wxDataInputStream store( input );
233 wxUint8 i1;
234 float f2;
235 wxString line;
236
237 store >> i1; // read a 8 bit integer.
238 store >> i1 >> f2; // read a 8 bit integer followed by float.
239 store >> line; // read a text line
23324ae1 240 @endcode
7c913512 241
23324ae1
FM
242 @library{wxbase}
243 @category{streams}
f09b5681
BP
244
245 @see wxDataOutputStream
23324ae1 246*/
7c913512 247class wxDataInputStream
23324ae1
FM
248{
249public:
23324ae1 250 /**
76e9224e
FM
251 Constructs a datastream object from an input stream.
252 Only read methods will be available.
f09b5681 253
7323ff1a 254 Note that the @a conv parameter is only available in Unicode builds of wxWidgets.
3c4f71cc 255
7c913512 256 @param stream
4cc4bfaf 257 The input stream.
7c913512 258 @param conv
d13b34d3 259 Charset conversion object used to decode strings in Unicode
f09b5681
BP
260 mode (see ReadString() for a detailed description). Note that you
261 must not destroy @a conv before you destroy this wxDataInputStream
262 instance!
23324ae1 263 */
f09b5681 264 wxDataInputStream(wxInputStream& stream,
107ea8f0 265 const wxMBConv& conv = wxConvUTF8 );
23324ae1
FM
266
267 /**
268 Destroys the wxDataInputStream object.
269 */
270 ~wxDataInputStream();
271
272 /**
f09b5681
BP
273 If @a be_order is @true, all data will be read in big-endian order,
274 such as written by programs on a big endian architecture (e.g. Sparc)
275 or written by Java-Streams (which always use big-endian order).
23324ae1
FM
276 */
277 void BigEndianOrdered(bool be_order);
278
10c2f98a
RR
279 /**
280 Returns the current text conversion class used for
281 reading strings.
282 */
283 wxMBConv *GetConv() const;
be2a424d 284
23324ae1 285 /**
f09b5681
BP
286 Reads a single byte from the stream.
287 */
288 wxUint8 Read8();
289 /**
be2a424d 290 Reads bytes from the stream in a specified buffer. The number of bytes
f09b5681
BP
291 to read is specified by the @a size variable.
292 */
293 void Read8(wxUint8* buffer, size_t size);
294
295 /**
296 Reads a 16 bit unsigned integer from the stream.
23324ae1
FM
297 */
298 wxUint16 Read16();
f09b5681
BP
299 /**
300 Reads 16 bit unsigned integers from the stream in a specified buffer.
be2a424d 301 The number of 16 bit unsigned integers to read is specified by the
f09b5681
BP
302 @a size variable.
303 */
4cc4bfaf 304 void Read16(wxUint16* buffer, size_t size);
23324ae1 305
23324ae1 306 /**
f09b5681 307 Reads a 32 bit unsigned integer from the stream.
23324ae1
FM
308 */
309 wxUint32 Read32();
f09b5681
BP
310 /**
311 Reads 32 bit unsigned integers from the stream in a specified buffer.
be2a424d 312 The number of 32 bit unsigned integers to read is specified by the
f09b5681
BP
313 @a size variable.
314 */
4cc4bfaf 315 void Read32(wxUint32* buffer, size_t size);
23324ae1 316
23324ae1 317 /**
f09b5681 318 Reads a 64 bit unsigned integer from the stream.
23324ae1
FM
319 */
320 wxUint64 Read64();
23324ae1 321 /**
f09b5681 322 Reads 64 bit unsigned integers from the stream in a specified buffer.
be2a424d 323 The number of 64 bit unsigned integers to read is specified by the
f09b5681 324 @a size variable.
23324ae1 325 */
f09b5681 326 void Read64(wxUint64* buffer, size_t size);
23324ae1 327
23324ae1 328 /**
789ab840
VZ
329 Reads a float from the stream.
330
331 Notice that if UseBasicPrecisions() hadn't been called, this function
332 simply reads a double and truncates it to float as by default the same
333 (80 bit extended precision) representation is used for both float and
334 double values.
335
336 @since 2.9.5
337 */
338 float ReadFloat();
339
340 /**
341 Reads float data from the stream in a specified buffer.
342
343 The number of floats to read is specified by the @a size variable.
344
345 @since 2.9.5
346 */
347 void ReadFloat(float* buffer, size_t size);
348
349 /**
350 Reads a double from the stream.
351
352 The expected format is either 80 bit extended precision or, if
353 UseBasicPrecisions() had been called, standard IEEE 754 64 bit double
354 precision.
23324ae1
FM
355 */
356 double ReadDouble();
789ab840 357
f09b5681 358 /**
789ab840 359 Reads double data from the stream in a specified buffer.
be2a424d
VZ
360
361 The number of doubles to read is specified by the @a size variable.
f09b5681 362 */
4cc4bfaf 363 void ReadDouble(double* buffer, size_t size);
23324ae1
FM
364
365 /**
f09b5681
BP
366 Reads a string from a stream. Actually, this function first reads a
367 long integer specifying the length of the string (without the last null
368 character) and then reads the string.
369
370 In Unicode build of wxWidgets, the fuction first reads multibyte
371 (char*) string from the stream and then converts it to Unicode using
372 the @e conv object passed to constructor and returns the result as
d13b34d3 373 wxString. You are responsible for using the same converter as when
f09b5681
BP
374 writing the stream.
375
376 @see wxDataOutputStream::WriteString()
23324ae1
FM
377 */
378 wxString ReadString();
10c2f98a 379
be2a424d 380 /**
10c2f98a
RR
381 Sets the text conversion class used for reading strings.
382 */
383 void SetConv( const wxMBConv &conv );
789ab840
VZ
384
385 /**
386 Disables the use of extended precision format for floating point
387 numbers.
388
389 This method disables the use of 80 bit extended precision format for
390 the @c float and @c double values read from the stream, which is used
391 by default (unless @c wxUSE_APPLE_IEEE was set to @c 0 when building
392 the library, in which case the extended format support is not available
393 at all and this function does nothing).
394
395 After calling it, @c float values will be expected to appear in one of
396 IEEE 754 "basic formats", i.e. 32 bit single precision format for
397 floats and 64 bit double precision format for doubles in the input.
398
399 @since 2.9.5
400 */
401 void UseBasicPrecisions();
402
403 /**
404 Explicitly request the use of extended precision for floating point
405 numbers.
406
407 This function allows the application code to explicitly request the use
408 of 80 bit extended precision format for the floating point numbers.
409 This is the case by default but using this function explicitly ensures
410 that the compilation of code relying on reading the input containing
411 numbers in extended precision format would fail when using a version of
412 wxWidgets compiled with @c wxUSE_APPLE_IEEE==0 and so not supporting
413 this format at all.
414
415 @since 2.9.5
416 */
417 void UseExtendedPrecision();
23324ae1 418};
e54c96f1 419