1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStreamBase and its derived classes
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
11 These enumeration values are returned by various functions in the context
16 wxSTREAM_NO_ERROR
= 0, //!< No error occurred.
17 wxSTREAM_EOF
, //!< EOF reached in Read() or similar.
18 wxSTREAM_WRITE_ERROR
, //!< generic write error on the last write call.
19 wxSTREAM_READ_ERROR
//!< generic read error on the last read call.
25 This class is the base class of most stream related classes in wxWidgets.
26 It must not be used directly.
37 Creates a dummy stream object. It doesn't do anything.
44 virtual ~wxStreamBase();
47 This function returns the last error.
49 wxStreamError
GetLastError() const;
52 Returns the length of the stream in bytes. If the length cannot be
53 determined (this is always the case for socket streams for example),
54 returns ::wxInvalidOffset.
58 virtual wxFileOffset
GetLength() const;
61 This function returns the size of the stream.
62 For example, for a file it is the size of the file.
65 There are streams which do not have size by definition, such as socket
66 streams. In that cases, GetSize() returns 0 so you should always test its
69 virtual size_t GetSize() const;
72 Returns @true if no error occurred on the stream.
76 virtual bool IsOk() const;
79 Returns @true if the streams supports seeking to arbitrary offsets.
81 virtual bool IsSeekable() const;
84 Returns the opposite of IsOk().
85 You can use this function to test the validity of the stream as if
89 bool DoSomething(wxInputStream& stream)
92 if (!stream.Read(&data, 4))
98 bool operator!() const;
104 It is called when the stream needs to change the current position.
109 One of the ::wxSeekMode enumeration values.
111 @return The new stream position or ::wxInvalidOffset on error.
113 virtual wxFileOffset
OnSysSeek(wxFileOffset pos
, wxSeekMode mode
);
117 It is called when the stream needs to know the real position.
119 @return The current stream position.
121 virtual wxFileOffset
OnSysTell() const;
125 @class wxStreamBuffer
127 wxStreamBuffer is a cache manager for wxStreamBase: it manages a stream buffer
130 Each stream always has one autoinitialized stream buffer, but you may
131 attach more of them to the same stream.
136 @see wxStreamBase, @ref overview_stream
143 Constructor, creates a new stream buffer using @a stream as a parent stream
144 and mode as the IO mode.
149 Can be: wxStreamBuffer::read, wxStreamBuffer::write, wxStreamBuffer::read_write.
151 One stream can have many stream buffers but only one is used internally
152 to pass IO call (e.g. wxInputStream::Read() -> wxStreamBuffer::Read()),
153 but you can call directly wxStreamBuffer::Read without any problems.
154 Note that all errors and messages linked to the stream are stored in the
155 stream, not the stream buffers:
158 streambuffer.Read(...);
159 streambuffer2.Read(...);
160 // This call erases previous error messages set by 'streambuffer'
161 // assuming that both instances are stream buffers for the same stream
166 wxStreamBuffer(wxStreamBase
& stream
, BufMode mode
);
169 Constructor for an input buffer of the specified size.
171 Using it is equivalent to using the constructor above with read mode
172 and calling SetBufferIO() but is more convenient.
176 wxStreamBuffer(wxInputStream
& stream
, size_t bufsize
);
179 Constructor for an output buffer of the specified size.
181 Using it is equivalent to using the constructor above with write mode
182 and calling SetBufferIO() but is more convenient.
186 wxStreamBuffer(wxOutputStream
& stream
, size_t bufsize
);
189 Constructor; creates a new empty stream buffer which won't flush any data
190 to a stream. mode specifies the type of the buffer (read, write, read_write).
192 This stream buffer has the advantage to be stream independent and to work
193 only on memory buffers but it is still compatible with the rest of the
194 wxStream classes. You can write, read to this special stream and it will
195 grow (if it is allowed by the user) its internal buffer.
196 Briefly, it has all functionality of a "normal" stream.
199 The "read_write" mode doesn't currently work for standalone stream buffers.
203 wxStreamBuffer(BufMode mode
);
208 This method initializes the stream buffer with the data of the specified
209 stream buffer. The new stream buffer has the same attributes, size, position
210 and they share the same buffer. This will cause problems if the stream to
211 which the stream buffer belong is destroyed and the newly cloned stream
212 buffer continues to be used, trying to call functions in the (destroyed)
213 stream. It is advised to use this feature only in very local area of the
216 wxStreamBuffer(const wxStreamBuffer
& buffer
);
220 It finalizes all IO calls and frees all internal buffers if necessary.
230 Toggles the fixed flag. Usually this flag is toggled at the same time as
231 @e flushable. This flag allows (when it has the @false value) or forbids
232 (when it has the @true value) the stream buffer to resize dynamically the
237 void Fixed(bool fixed
);
240 Flushes the IO buffer.
245 Toggles the flushable flag.
246 If @a flushable is disabled, no data are sent to the parent stream.
248 void Flushable(bool flushable
);
251 Returns a pointer on the end of the stream buffer.
253 void* GetBufferEnd() const;
256 Returns a pointer on the current position of the stream buffer.
258 void* GetBufferPos() const;
261 Returns the size of the buffer.
263 size_t GetBufferSize() const;
266 Returns a pointer on the start of the stream buffer.
268 void* GetBufferStart() const;
271 Gets a single char from the stream buffer. It acts like the Read() call.
274 You aren't directly notified if an error occurred during the IO call.
278 virtual char GetChar();
281 Returns the amount of available data in the buffer.
283 size_t GetDataLeft();
286 Returns the current position (counted in bytes) in the stream buffer.
288 size_t GetIntPosition() const;
291 Returns the amount of bytes read during the last IO call to the parent stream.
293 size_t GetLastAccess() const;
296 Puts a single char to the stream buffer.
299 You aren't directly notified if an error occurred during the IO call.
303 virtual void PutChar(char c
);
306 Reads a block of the specified size and stores the data in buffer.
307 This function tries to read from the buffer first and if more data has
308 been requested, reads more data from the associated stream and updates
309 the buffer accordingly until all requested data is read.
311 @return It returns the size of the data read. If the returned size is
312 different of the specified size, an error has occurred and
313 should be tested using GetLastError().
315 virtual size_t Read(void* buffer
, size_t size
);
318 Copies data to @a buffer.
319 The function returns when @a buffer is full or when there isn't
320 any more data in the current buffer.
324 size_t Read(wxStreamBuffer
* buffer
);
327 Resets to the initial state variables concerning the buffer.
332 Changes the current position.
333 Parameter @a mode may be one of the following:
335 - @b wxFromStart: The position is counted from the start of the stream.
336 - @b wxFromCurrent: The position is counted from the current position of the stream.
337 - @b wxFromEnd: The position is counted from the end of the stream.
339 @return Upon successful completion, it returns the new offset as
340 measured in bytes from the beginning of the stream.
341 Otherwise, it returns ::wxInvalidOffset.
343 virtual wxFileOffset
Seek(wxFileOffset pos
, wxSeekMode mode
);
346 Specifies which pointers to use for stream buffering.
347 You need to pass a pointer on the start of the buffer end and another
348 on the end. The object will use this buffer to cache stream data.
349 It may be used also as a source/destination buffer when you create an
350 empty stream buffer (See wxStreamBuffer::wxStreamBuffer).
353 When you use this function, you will have to destroy the IO buffers
354 yourself after the stream buffer is destroyed or don't use it anymore.
355 In the case you use it with an empty buffer, the stream buffer will not
356 resize it when it is full.
358 @see wxStreamBuffer(), Fixed(), Flushable()
360 void SetBufferIO(void* start
, void* end
, bool takeOwnership
= false);
363 Destroys or invalidates the previous IO buffer and allocates a new one of the
367 All previous pointers aren't valid anymore.
370 The created IO buffer is growable by the object.
372 @see Fixed(), Flushable()
374 void SetBufferIO(size_t bufsize
);
377 Sets the current position (in bytes) in the stream buffer.
380 Since it is a very low-level function, there is no check on the position:
381 specifying an invalid position can induce unexpected results.
383 void SetIntPosition(size_t pos
);
386 Returns the parent stream of the stream buffer.
387 @deprecated use GetStream() instead
389 wxStreamBase
* Stream();
392 Gets the current position in the stream. This position is calculated from
393 the @e real position in the stream and from the internal buffer position: so
394 it gives you the position in the @e real stream counted from the start of
397 @return Returns the current position in the stream if possible,
398 ::wxInvalidOffset in the other case.
400 virtual wxFileOffset
Tell() const;
403 Truncates the buffer to the current position.
405 @note Truncate() cannot be used to enlarge the buffer. This is
406 usually not needed since the buffer expands automatically.
411 Writes a block of the specified size using data of buffer.
412 The data are cached in a buffer before being sent in one block to the stream.
414 virtual size_t Write(const void* buffer
, size_t size
);
419 size_t Write(wxStreamBuffer
* buffer
);
425 @class wxOutputStream
427 wxOutputStream is an abstract base class which may not be used directly.
428 It is the base class of all streams which provide a Write() function,
429 i.e. which can be used to output data (e.g. to a file, to a socket, etc).
431 If you want to create your own output stream, you'll need to derive from this
432 class and implement the protected OnSysWrite() function only.
437 class wxOutputStream
: public wxStreamBase
441 Creates a dummy wxOutputStream object.
448 virtual ~wxOutputStream();
451 Closes the stream, returning @false if an error occurs.
452 The stream is closed implicitly in the destructor if Close() is not
455 If this stream wraps another stream or some other resource such
456 as a file, then the underlying resource is closed too if it is owned
457 by this stream, or left open otherwise.
459 virtual bool Close();
462 Returns the number of bytes written during the last Write().
463 It may return 0 even if there is no error on the stream if it is
464 only temporarily impossible to write to it.
466 virtual size_t LastWrite() const;
469 Puts the specified character in the output queue and increments the
475 Changes the stream current position.
480 One of wxFromStart, wxFromEnd, wxFromCurrent.
482 @return The new stream position or ::wxInvalidOffset on error.
484 virtual wxFileOffset
SeekO(wxFileOffset pos
, wxSeekMode mode
= wxFromStart
);
487 Returns the current stream position.
489 virtual wxFileOffset
TellO() const;
492 Writes up to the specified amount of bytes using the data of buffer.
493 Note that not all data can always be written so you must check the number
494 of bytes really written to the stream using LastWrite() when this function
497 In some cases (for example a write end of a pipe which is currently full)
498 it is even possible that there is no errors and zero bytes have been written.
499 This function returns a reference on the current object, so the user can
500 test any states of the stream right away.
502 virtual wxOutputStream
& Write(const void* buffer
, size_t size
);
505 Reads data from the specified input stream and stores them
506 in the current stream. The data is read until an error is raised
507 by one of the two streams.
509 wxOutputStream
& Write(wxInputStream
& stream_in
);
513 Internal function. It is called when the stream wants to write data of the
514 specified size @a bufsize into the given @a buffer.
516 It should return the size that was actually wrote (which maybe zero if
517 @a bufsize is zero or if an error occurred; in this last case the internal
518 variable @c m_lasterror should be appropriately set).
520 size_t OnSysWrite(const void* buffer
, size_t bufsize
);
527 wxInputStream is an abstract base class which may not be used directly.
528 It is the base class of all streams which provide a Read() function,
529 i.e. which can be used to read data from a source (e.g. a file, a socket, etc).
531 If you want to create your own input stream, you'll need to derive from this
532 class and implement the protected OnSysRead() function only.
537 class wxInputStream
: public wxStreamBase
541 Creates a dummy input stream.
548 virtual ~wxInputStream();
551 Returns @true if some data is available in the stream right now, so that
552 calling Read() wouldn't block.
554 virtual bool CanRead() const;
557 Returns @true after an attempt has been made to read past the end of the
560 virtual bool Eof() const;
563 Returns the first character in the input queue and removes it,
564 blocking until it appears if necessary.
566 On success returns a value between 0 - 255; on end of file returns @c wxEOF.
571 Returns the last number of bytes read.
573 virtual size_t LastRead() const;
576 Returns the first character in the input queue without removing it.
581 Reads the specified amount of bytes and stores the data in buffer.
582 To check if the call was successfull you must use LastRead() to check
583 if this call did actually read @a size bytes (if it didn't, GetLastError()
584 should return a meaningful value).
587 The buffer absolutely needs to have at least the specified size.
589 @return This function returns a reference on the current object, so the
590 user can test any states of the stream right away.
592 virtual wxInputStream
& Read(void* buffer
, size_t size
);
595 Reads data from the input queue and stores it in the specified output stream.
596 The data is read until an error is raised by one of the two streams.
598 @return This function returns a reference on the current object, so the
599 user can test any states of the stream right away.
601 wxInputStream
& Read(wxOutputStream
& stream_out
);
604 Changes the stream current position.
609 One of wxFromStart, wxFromEnd, wxFromCurrent.
611 @return The new stream position or ::wxInvalidOffset on error.
613 virtual wxFileOffset
SeekI(wxFileOffset pos
, wxSeekMode mode
= wxFromStart
);
616 Returns the current stream position.
618 virtual wxFileOffset
TellI() const;
621 This function is only useful in read mode.
622 It is the manager of the "Write-Back" buffer. This buffer acts like a
623 temporary buffer where data which has to be read during the next read IO
624 call are put. This is useful when you get a big block of data which you
625 didn't want to read: you can replace them at the top of the input queue
628 Be very careful about this call in connection with calling SeekI() on
629 the same stream. Any call to SeekI() will invalidate any previous call
630 to this method (otherwise you could SeekI() to one position, "unread" a
631 few bytes there, SeekI() to another position and data would be either
634 @return Returns the amount of bytes saved in the Write-Back buffer.
636 size_t Ungetch(const void* buffer
, size_t size
);
639 This function acts like the previous one except that it takes only one
640 character: it is sometimes shorter to use than the generic function.
642 bool Ungetch(char c
);
647 Internal function. It is called when the stream wants to read data of the
648 specified size @a bufsize and wants it to be placed inside @a buffer.
650 It should return the size that was actually read or zero if EOF has been
651 reached or an error occurred (in this last case the internal @c m_lasterror
652 variable should be set accordingly as well).
654 size_t OnSysRead(void* buffer
, size_t bufsize
);
661 @class wxCountingOutputStream
663 wxCountingOutputStream is a specialized output stream which does not write any
664 data anywhere, instead it counts how many bytes would get written if this were a
665 normal stream. This can sometimes be useful or required if some data gets
666 serialized to a stream or compressed by using stream compression and thus the
667 final size of the stream cannot be known other than pretending to write the stream.
668 One case where the resulting size would have to be known is if the data has
669 to be written to a piece of memory and the memory has to be allocated before
670 writing to it (which is probably always the case when writing to a memory stream).
675 class wxCountingOutputStream
: public wxOutputStream
679 Creates a wxCountingOutputStream object.
681 wxCountingOutputStream();
686 virtual ~wxCountingOutputStream();
689 Returns the current size of the stream.
691 size_t GetSize() const;
696 @class wxBufferedInputStream
698 This stream acts as a cache. It caches the bytes read from the specified
699 input stream (see wxFilterInputStream).
700 It uses wxStreamBuffer and sets the default in-buffer size to 1024 bytes.
701 This class may not be used without some other stream to read the data
702 from (such as a file stream or a memory stream).
707 @see wxStreamBuffer, wxInputStream, wxBufferedOutputStream
709 class wxBufferedInputStream
: public wxFilterInputStream
713 Constructor using the provided buffer or default.
716 The associated low-level stream.
718 The buffer to use if non-@NULL. Notice that the ownership of this
719 buffer is taken by the stream, i.e. it will delete it. If this
720 parameter is @NULL a default 1KB buffer is used.
722 wxBufferedInputStream(wxInputStream
& stream
,
723 wxStreamBuffer
*buffer
= NULL
);
726 Constructor allowing to specify the size of the buffer.
728 This is just a more convenient alternative to creating a wxStreamBuffer
729 of the given size and using the other overloaded constructor of this
733 The associated low-level stream.
735 The size of the buffer, in bytes.
739 wxBufferedInputStream(wxInputStream
& stream
, size_t bufsize
);
744 virtual ~wxBufferedInputStream();
751 Enumeration values used by wxFilterClassFactory.
753 enum wxStreamProtocolType
755 wxSTREAM_PROTOCOL
, //!< wxFileSystem protocol (should be only one).
756 wxSTREAM_MIMETYPE
, //!< MIME types the stream handles.
757 wxSTREAM_ENCODING
, //!< The HTTP Content-Encodings the stream handles.
758 wxSTREAM_FILEEXT
//!< File extensions the stream handles.
762 @class wxFilterClassFactory
764 Allows the creation of filter streams to handle compression formats such
767 For example, given a filename you can search for a factory that will
768 handle it and create a stream to decompress it:
771 factory = wxFilterClassFactory::Find(filename, wxSTREAM_FILEEXT);
773 stream = factory->NewStream(new wxFFileInputStream(filename));
776 wxFilterClassFactory::Find can also search for a factory by MIME type,
777 HTTP encoding or by wxFileSystem protocol.
778 The available factories can be enumerated using wxFilterClassFactory::GetFirst()
779 and wxFilterClassFactory::GetNext().
784 @see wxFilterInputStream, wxFilterOutputStream, wxArchiveClassFactory,
785 @ref overview_archive
787 class wxFilterClassFactory
: public wxObject
791 Returns @true if this factory can handle the given protocol, MIME type, HTTP
792 encoding or file extension.
794 When using @c wxSTREAM_FILEEXT for the second parameter, the first parameter
795 can be a complete filename rather than just an extension.
797 bool CanHandle(const wxString
& protocol
,
798 wxStreamProtocolType type
= wxSTREAM_PROTOCOL
) const;
801 A static member that finds a factory that can handle a given protocol, MIME
802 type, HTTP encoding or file extension. Returns a pointer to the class
803 factory if found, or @NULL otherwise.
804 It does not give away ownership of the factory.
806 When using @c wxSTREAM_FILEEXT for the second parameter, the first parameter
807 can be a complete filename rather than just an extension.
809 static const wxFilterClassFactory
* Find(const wxString
& protocol
,
810 wxStreamProtocolType type
= wxSTREAM_PROTOCOL
);
814 GetFirst and GetNext can be used to enumerate the available factories.
815 For example, to list them:
819 const wxFilterClassFactory *factory = wxFilterClassFactory::GetFirst();
822 list << factory->GetProtocol() << _T("\n");
823 factory = factory->GetNext();
827 GetFirst()/GetNext() return a pointer to a factory or @NULL if no more
828 are available. They do not give away ownership of the factory.
830 static const wxFilterClassFactory
* GetFirst();
831 const wxFilterClassFactory
* GetNext() const;
835 Returns the wxFileSystem protocol supported by this factory.
836 Equivalent to @code wxString(*GetProtocols()) @endcode.
838 wxString
GetProtocol() const;
841 Returns the protocols, MIME types, HTTP encodings or file extensions
842 supported by this factory, as an array of null terminated strings.
843 It does not give away ownership of the array or strings.
845 For example, to list the file extensions a factory supports:
849 const wxChar *const *p;
851 for (p = factory->GetProtocols(wxSTREAM_FILEEXT); *p; p++)
852 list << *p << _T("\n");
855 virtual const wxChar
* const* GetProtocols(wxStreamProtocolType type
= wxSTREAM_PROTOCOL
) const = 0;
859 Create a new input or output stream to decompress or compress a given stream.
861 If the parent stream is passed as a pointer then the new filter stream
862 takes ownership of it. If it is passed by reference then it does not.
864 virtual wxFilterInputStream
* NewStream(wxInputStream
& stream
) const = 0;
865 virtual wxFilterOutputStream
* NewStream(wxOutputStream
& stream
) const = 0;
866 virtual wxFilterInputStream
* NewStream(wxInputStream
* stream
) const = 0;
867 virtual wxFilterOutputStream
* NewStream(wxOutputStream
* stream
) const = 0;
871 Remove the file extension of @a location if it is one of the file
872 extensions handled by this factory.
874 wxString
PopExtension(const wxString
& location
) const;
877 Adds this class factory to the list returned by GetFirst()/GetNext().
879 It is not necessary to do this to use the filter streams. It is usually
880 used when implementing streams, typically the implementation will
881 add a static instance of its factory class.
883 It can also be used to change the order of a factory already in the list,
884 bringing it to the front. This isn't a thread safe operation so can't be
885 done when other threads are running that will be using the list.
887 The list does not take ownership of the factory.
892 Removes this class factory from the list returned by GetFirst()/GetNext().
893 Removing from the list isn't a thread safe operation so can't be done
894 when other threads are running that will be using the list.
896 The list does not own the factories, so removing a factory does not delete it.
904 @class wxFilterOutputStream
906 A filter stream has the capability of a normal stream but it can be placed
907 on top of another stream. So, for example, it can compress, encrypt the data
908 which are passed to it and write them to another stream.
911 The use of this class is exactly the same as of wxOutputStream.
912 Only a constructor differs and it is documented below.
917 @see wxFilterClassFactory, wxFilterInputStream
919 class wxFilterOutputStream
: public wxOutputStream
924 Initializes a "filter" stream.
926 If the parent stream is passed as a pointer then the new filter stream
927 takes ownership of it. If it is passed by reference then it does not.
929 wxFilterOutputStream(wxOutputStream
& stream
);
930 wxFilterOutputStream(wxOutputStream
* stream
);
937 @class wxFilterInputStream
939 A filter stream has the capability of a normal stream but it can be placed on
940 top of another stream. So, for example, it can uncompress or decrypt the data which
941 are read from another stream and pass it to the requester.
944 The interface of this class is the same as that of wxInputStream.
945 Only a constructor differs and it is documented below.
950 @see wxFilterClassFactory, wxFilterOutputStream
952 class wxFilterInputStream
: public wxInputStream
957 Initializes a "filter" stream.
959 If the parent stream is passed as a pointer then the new filter stream
960 takes ownership of it. If it is passed by reference then it does not.
962 wxFilterInputStream(wxInputStream
& stream
);
963 wxFilterInputStream(wxInputStream
* stream
);
970 @class wxBufferedOutputStream
972 This stream acts as a cache. It caches the bytes to be written to the specified
973 output stream (See wxFilterOutputStream). The data is only written when the
974 cache is full, when the buffered stream is destroyed or when calling SeekO().
976 This class may not be used without some other stream to write the data
977 to (such as a file stream or a memory stream).
982 @see wxStreamBuffer, wxOutputStream
984 class wxBufferedOutputStream
: public wxFilterOutputStream
988 Constructor using the provided buffer or default.
991 The associated low-level stream.
993 The buffer to use if non-@NULL. Notice that the ownership of this
994 buffer is taken by the stream, i.e. it will delete it. If this
995 parameter is @NULL a default 1KB buffer is used.
997 wxBufferedOutputStream(wxOutputStream
& stream
,
998 wxStreamBuffer
*buffer
= NULL
);
1001 Constructor allowing to specify the size of the buffer.
1003 This is just a more convenient alternative to creating a wxStreamBuffer
1004 of the given size and using the other overloaded constructor of this
1008 The associated low-level stream.
1010 The size of the buffer, in bytes.
1014 wxBufferedOutputStream(wxOutputStream
& stream
, size_t bufsize
);
1017 Destructor. Calls Sync() and destroys the internal buffer.
1019 virtual ~wxBufferedOutputStream();
1022 Calls Sync() and changes the stream position.
1024 virtual wxFileOffset
SeekO(wxFileOffset pos
, wxSeekMode mode
= wxFromStart
);
1027 Flushes the buffer and calls Sync() on the parent stream.
1029 virtual void Sync();