]> git.saurik.com Git - wxWidgets.git/blob - include/wx/sstream.h
0bc18690ed23c729a9c3205cb2a9f5ecb9881c0c
[wxWidgets.git] / include / wx / sstream.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/sstream.h
3 // Purpose: string-based streams
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 2004-09-19
7 // RCS-ID: $Id$
8 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_SSTREAM_H_
13 #define _WX_SSTREAM_H_
14
15 #include "wx/stream.h"
16
17 #if wxUSE_STREAMS
18
19 // ----------------------------------------------------------------------------
20 // wxStringInputStream is a stream reading from the given (fixed size) string
21 // ----------------------------------------------------------------------------
22
23 class WXDLLIMPEXP_BASE wxStringInputStream : public wxInputStream
24 {
25 public:
26 // ctor associates the stream with the given string which makes a copy of
27 // it
28 wxStringInputStream(const wxString& s)
29 : m_str(s)
30 {
31 m_pos = 0;
32 }
33
34 virtual size_t GetSize() const { return m_str.length(); }
35
36 protected:
37 virtual off_t OnSysSeek(off_t ofs, wxSeekMode mode);
38 virtual off_t OnSysTell() const;
39 virtual size_t OnSysRead(void *buffer, size_t size);
40
41 private:
42 // the string we're reading from
43 wxString m_str;
44
45 // position in the stream in bytes, *not* in chars
46 size_t m_pos;
47
48
49 DECLARE_NO_COPY_CLASS(wxStringInputStream)
50 };
51
52 // ----------------------------------------------------------------------------
53 // wxStringOutputStream writes data to the given string, expanding it as needed
54 // ----------------------------------------------------------------------------
55
56 class WXDLLIMPEXP_BASE wxStringOutputStream : public wxOutputStream
57 {
58 public:
59 // The stream will write data either to the provided string or to an
60 // internal string which can be retrieved using GetString()
61 wxStringOutputStream(wxString *pString = NULL)
62 {
63 m_str = pString ? pString : &m_strInternal;
64 m_pos = m_str->length() / sizeof(wxChar);
65 }
66
67 // get the string containing current output
68 const wxString& GetString() const { return *m_str; }
69
70 protected:
71 virtual size_t OnSysWrite(const void *buffer, size_t size);
72
73 private:
74 // internal string, not used if caller provided his own string
75 wxString m_strInternal;
76
77 // pointer given by the caller or just pointer to m_strInternal
78 wxString *m_str;
79
80 // position in the stream in bytes, *not* in chars
81 size_t m_pos;
82
83
84 DECLARE_NO_COPY_CLASS(wxStringOutputStream)
85 };
86
87 #endif // wxUSE_STREAMS
88
89 #endif // _WX_SSTREAM_H_
90