File: datstrm.h

package info (click to toggle)
wxpython3.0 3.0.2.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 482,760 kB
  • ctags: 518,293
  • sloc: cpp: 2,127,226; python: 294,045; makefile: 51,942; ansic: 19,033; sh: 3,013; xml: 1,629; perl: 17
file content (418 lines) | stat: -rw-r--r-- 14,361 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/////////////////////////////////////////////////////////////////////////////
// Name:        datstrm.h
// Purpose:     interface of wxDataInputStream and wxDataOutputStream
// Author:      wxWidgets team
// Licence:     wxWindows licence
/////////////////////////////////////////////////////////////////////////////

/**
    @class wxDataOutputStream

    This class provides functions that write binary data types in a portable
    way.

    Data can be written in either big-endian or little-endian format,
    little-endian being the default on all architectures but BigEndianOrdered()
    can be used to change this. The default format for the floating point types
    is 80 bit "extended precision" unless @c wxUSE_APPLE_IEEE was turned off
    during the library compilation, in which case extended precision is not
    available at all. You can call UseBasicPrecisions() to change this and
    use the standard IEEE 754 32 bit single precision format for floats and
    standard 64 bit double precision format for doubles. This is recommended
    for the new code for better interoperability with other software that
    typically uses standard IEEE 754 formats for its data, the use of extended
    precision by default is solely due to backwards compatibility.

    If you want to write data to text files (or streams) use wxTextOutputStream
    instead.

    The "<<" operator is overloaded and you can use this class like a standard
    C++ iostream. See wxDataInputStream for its usage and caveats.

    @library{wxbase}
    @category{streams}

    @see wxDataInputStream
*/
class wxDataOutputStream
{
public:
    /**
        Constructs a datastream object from an output stream.
        Only write methods will be available.

        Note that the @a conv parameter is only available in Unicode builds of wxWidgets.

        @param stream
            The output stream.
        @param conv
            Charset conversion object used to encoding Unicode strings
            before writing them to the stream in Unicode mode (see
            WriteString() for a detailed description). Note that you must not
            destroy @a conv before you destroy this wxDataOutputStream
            instance! It is recommended to use the default value (UTF-8).
    */
    wxDataOutputStream(wxOutputStream& stream,
                       const wxMBConv& conv = wxConvUTF8);

    /**
        Destroys the wxDataOutputStream object.
    */
    ~wxDataOutputStream();

    /**
        If @a be_order is @true, all data will be written in big-endian order,
        e.g. for reading on a Sparc or from Java-Streams (which always use
        big-endian order), otherwise data will be written in little-endian
        order.
    */
    void BigEndianOrdered(bool be_order);

    /**
       Returns the current text conversion class used for
       writing strings.
    */
    wxMBConv *GetConv() const;

    /**
       Sets the text conversion class used for writing strings.
    */
    void SetConv( const wxMBConv &conv );

    /**
        Disables the use of extended precision format for floating point
        numbers.

        This method disables the use of 80 bit extended precision format for
        the @c float and @c double values written to the stream, which is used
        by default (unless @c wxUSE_APPLE_IEEE was set to @c 0 when building
        the library, in which case the extended format support is not available
        at all and this function does nothing).

        After calling it, @c float values will be written out in one of IEEE
        754 "basic formats", i.e. 32 bit single precision format for floats and
        64 bit double precision format for doubles.

        @since 2.9.5
    */
    void UseBasicPrecisions();

    /**
        Explicitly request the use of extended precision for floating point
        numbers.

        This function allows the application code to explicitly request the use
        of 80 bit extended precision format for the floating point numbers.
        This is the case by default but using this function explicitly ensures
        that the compilation of code relying on producing the output stream
        using extended precision would fail when using a version of wxWidgets
        compiled with @c wxUSE_APPLE_IEEE==0 and so not supporting this format
        at all.

        @since 2.9.5
     */
    void UseExtendedPrecision();

    /**
        Writes the single byte @a i8 to the stream.
    */
    void Write8(wxUint8 i8);
    /**
        Writes an array of bytes to the stream. The number of bytes to write is
        specified with the @a size variable.
    */
    void Write8(const wxUint8* buffer, size_t size);

    /**
        Writes the 16 bit unsigned integer @a i16 to the stream.
    */
    void Write16(wxUint16 i16);
    /**
        Writes an array of 16 bit unsigned integer to the stream. The number of
        16 bit unsigned integer to write is specified with the @a size variable.
    */
    void Write16(const wxUint16* buffer, size_t size);

    /**
        Writes the 32 bit unsigned integer @a i32 to the stream.
    */
    void Write32(wxUint32 i32);
    /**
        Writes an array of 32 bit unsigned integer to the stream. The number of
        32 bit unsigned integer to write is specified with the @a size variable.
    */
    void Write32(const wxUint32* buffer, size_t size);

    /**
        Writes the 64 bit unsigned integer @a i64 to the stream.
    */
    void Write64(wxUint64 i64);
    /**
        Writes an array of 64 bit unsigned integer to the stream. The number of
        64 bit unsigned integer to write is specified with the @a size variable.
    */
    void Write64(const wxUint64* buffer, size_t size);

    /**
        Writes the float @a f to the stream.

        If UseBasicPrecisions() had been called, the value is written out using
        the standard IEEE 754 32 bit single precision format. Otherwise, this
        method uses the same format as WriteDouble(), i.e. 80 bit extended
        precision representation.

        @since 2.9.5
    */
    void WriteFloat(float f);

    /**
        Writes an array of float to the stream. The number of floats to write is
        specified by the @a size variable.

        @since 2.9.5
    */
    void WriteFloat(const float* buffer, size_t size);

    /**
        Writes the double @a d to the stream.

        The output format is either 80 bit extended precision or, if
        UseBasicPrecisions() had been called, standard IEEE 754 64 bit double
        precision.
    */
    void WriteDouble(double d);

    /**
        Writes an array of double to the stream. The number of doubles to write is
        specified by the @a size variable.
    */
    void WriteDouble(const double* buffer, size_t size);

    /**
        Writes @a string to the stream. Actually, this method writes the size
        of the string before writing @a string itself.

        In ANSI build of wxWidgets, the string is written to the stream in
        exactly same way it is represented in memory. In Unicode build,
        however, the string is first converted to multibyte representation with
        @e conv object passed to stream's constructor (consequently, ANSI
        applications can read data written by Unicode application, as long as
        they agree on encoding) and this representation is written to the
        stream. UTF-8 is used by default.
    */
    void WriteString(const wxString& string);
};



/**
    @class wxDataInputStream

    This class provides functions that read binary data types in a portable
    way.

    Please see wxDataOutputStream for the discussion of the format expected by
    this stream on input, notably for the floating point values.

    If you want to read data from text files (or streams) use wxTextInputStream
    instead.

    The ">>" operator is overloaded and you can use this class like a standard
    C++ iostream. Note, however, that the arguments are the fixed size types
    wxUint32, wxInt32 etc and on a typical 32-bit computer, none of these match
    to the "long" type (wxInt32 is defined as signed int on 32-bit
    architectures) so that you cannot use long. To avoid problems (here and
    elsewhere), make use of the wxInt32, wxUint32, etc types.

    For example:

    @code
    wxFileInputStream input( "mytext.dat" );
    wxDataInputStream store( input );
    wxUint8 i1;
    float f2;
    wxString line;

    store >> i1;       // read a 8 bit integer.
    store >> i1 >> f2; // read a 8 bit integer followed by float.
    store >> line;     // read a text line
    @endcode

    @library{wxbase}
    @category{streams}

    @see wxDataOutputStream
*/
class wxDataInputStream
{
public:
    /**
        Constructs a datastream object from an input stream.
        Only read methods will be available.

        Note that the @a conv parameter is only available in Unicode builds of wxWidgets.

        @param stream
            The input stream.
        @param conv
            Charset conversion object used to decode strings in Unicode
            mode (see ReadString() for a detailed description). Note that you
            must not destroy @a conv before you destroy this wxDataInputStream
            instance!
    */
    wxDataInputStream(wxInputStream& stream,
                      const wxMBConv& conv = wxConvUTF8 );

    /**
        Destroys the wxDataInputStream object.
    */
    ~wxDataInputStream();

    /**
        If @a be_order is @true, all data will be read in big-endian order,
        such as written by programs on a big endian architecture (e.g. Sparc)
        or written by Java-Streams (which always use big-endian order).
    */
    void BigEndianOrdered(bool be_order);

    /**
       Returns the current text conversion class used for
       reading strings.
    */
    wxMBConv *GetConv() const;

    /**
        Reads a single byte from the stream.
    */
    wxUint8 Read8();
    /**
        Reads bytes from the stream in a specified buffer. The number of bytes
        to read is specified by the @a size variable.
    */
    void Read8(wxUint8* buffer, size_t size);

    /**
        Reads a 16 bit unsigned integer from the stream.
    */
    wxUint16 Read16();
    /**
        Reads 16 bit unsigned integers from the stream in a specified buffer.
        The number of 16 bit unsigned integers to read is specified by the
        @a size variable.
    */
    void Read16(wxUint16* buffer, size_t size);

    /**
        Reads a 32 bit unsigned integer from the stream.
    */
    wxUint32 Read32();
    /**
        Reads 32 bit unsigned integers from the stream in a specified buffer.
        The number of 32 bit unsigned integers to read is specified by the
        @a size variable.
    */
    void Read32(wxUint32* buffer, size_t size);

    /**
        Reads a 64 bit unsigned integer from the stream.
    */
    wxUint64 Read64();
    /**
        Reads 64 bit unsigned integers from the stream in a specified buffer.
        The number of 64 bit unsigned integers to read is specified by the
        @a size variable.
    */
    void Read64(wxUint64* buffer, size_t size);

    /**
        Reads a float from the stream.

        Notice that if UseBasicPrecisions() hadn't been called, this function
        simply reads a double and truncates it to float as by default the same
        (80 bit extended precision) representation is used for both float and
        double values.

        @since 2.9.5
    */
    float ReadFloat();

    /**
        Reads float data from the stream in a specified buffer.

        The number of floats to read is specified by the @a size variable.

        @since 2.9.5
    */
    void ReadFloat(float* buffer, size_t size);

    /**
        Reads a double from the stream.

        The expected format is either 80 bit extended precision or, if
        UseBasicPrecisions() had been called, standard IEEE 754 64 bit double
        precision.
    */
    double ReadDouble();

    /**
        Reads double data  from the stream in a specified buffer.

        The number of doubles to read is specified by the @a size variable.
    */
    void ReadDouble(double* buffer, size_t size);

    /**
        Reads a string from a stream. Actually, this function first reads a
        long integer specifying the length of the string (without the last null
        character) and then reads the string.

        In Unicode build of wxWidgets, the function first reads multibyte
        (char*) string from the stream and then converts it to Unicode using
        the @e conv object passed to constructor and returns the result as
        wxString. You are responsible for using the same converter as when
        writing the stream.

        @see wxDataOutputStream::WriteString()
    */
    wxString ReadString();

    /**
       Sets the text conversion class used for reading strings.
    */
    void SetConv( const wxMBConv &conv );

    /**
        Disables the use of extended precision format for floating point
        numbers.

        This method disables the use of 80 bit extended precision format for
        the @c float and @c double values read from the stream, which is used
        by default (unless @c wxUSE_APPLE_IEEE was set to @c 0 when building
        the library, in which case the extended format support is not available
        at all and this function does nothing).

        After calling it, @c float values will be expected to appear in one of
        IEEE 754 "basic formats", i.e. 32 bit single precision format for
        floats and 64 bit double precision format for doubles in the input.

        @since 2.9.5
    */
    void UseBasicPrecisions();

    /**
        Explicitly request the use of extended precision for floating point
        numbers.

        This function allows the application code to explicitly request the use
        of 80 bit extended precision format for the floating point numbers.
        This is the case by default but using this function explicitly ensures
        that the compilation of code relying on reading the input containing
        numbers in extended precision format would fail when using a version of
        wxWidgets compiled with @c wxUSE_APPLE_IEEE==0 and so not supporting
        this format at all.

        @since 2.9.5
     */
    void UseExtendedPrecision();
};