1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: string-based streams
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_SSTREAM_H_
13 #define _WX_SSTREAM_H_
15 #include "wx/stream.h"
19 // ----------------------------------------------------------------------------
20 // wxStringInputStream is a stream reading from the given (fixed size) string
21 // ----------------------------------------------------------------------------
23 class WXDLLIMPEXP_BASE wxStringInputStream
: public wxInputStream
26 // ctor associates the stream with the given string which makes a copy of
28 wxStringInputStream(const wxString
& s
);
30 virtual wxFileOffset
GetLength() const;
31 virtual bool IsSeekable() const { return true; }
34 virtual wxFileOffset
OnSysSeek(wxFileOffset ofs
, wxSeekMode mode
);
35 virtual wxFileOffset
OnSysTell() const;
36 virtual size_t OnSysRead(void *buffer
, size_t size
);
39 // the string that was passed in the ctor
42 // the buffer we're reading from
45 // length of the buffer we're reading from
48 // position in the stream in bytes, *not* in chars
51 wxDECLARE_NO_COPY_CLASS(wxStringInputStream
);
54 // ----------------------------------------------------------------------------
55 // wxStringOutputStream writes data to the given string, expanding it as needed
56 // ----------------------------------------------------------------------------
58 class WXDLLIMPEXP_BASE wxStringOutputStream
: public wxOutputStream
61 // The stream will write data either to the provided string or to an
62 // internal string which can be retrieved using GetString()
64 // Note that the conversion object should have the life time greater than
66 wxStringOutputStream(wxString
*pString
= NULL
,
67 wxMBConv
& conv
= wxConvUTF8
)
69 #if wxUSE_UNICODE_WCHAR
71 #endif // wxUSE_UNICODE_WCHAR
73 m_str
= pString
? pString
: &m_strInternal
;
74 m_pos
= m_str
->length() / sizeof(wxChar
);
77 // get the string containing current output
78 const wxString
& GetString() const { return *m_str
; }
80 virtual bool IsSeekable() const { return true; }
83 virtual wxFileOffset
OnSysTell() const;
84 virtual size_t OnSysWrite(const void *buffer
, size_t size
);
87 // internal string, not used if caller provided his own string
88 wxString m_strInternal
;
90 // pointer given by the caller or just pointer to m_strInternal
93 // position in the stream in bytes, *not* in chars
96 // converter to use: notice that with the default UTF-8 one the input
97 // stream must contain valid UTF-8 data, use wxConvISO8859_1 to work with
98 // arbitrary 8 bit data
101 #if wxUSE_UNICODE_WCHAR
102 // unconverted data from the last call to OnSysWrite()
103 wxMemoryBuffer m_unconv
;
104 #endif // wxUSE_UNICODE_WCHAR
106 wxDECLARE_NO_COPY_CLASS(wxStringOutputStream
);
109 #endif // wxUSE_STREAMS
111 #endif // _WX_SSTREAM_H_