]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/stream.h
Commented out appearance sections in docs temporarily until screenshots are added.
[wxWidgets.git] / interface / stream.h
index 0ee93d52b1ce8cef764afa46807b00132de675b4..4957165e010d95523815881d147198519fb46118 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        stream.h
-// Purpose:     documentation for wxCountingOutputStream class
+// Purpose:     interface of wxCountingOutputStream
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -45,10 +45,11 @@ public:
     /**
         Returns the current size of the stream.
     */
-    size_t GetSize();
+    size_t GetSize() const;
 };
 
 
+
 /**
     @class wxBufferedInputStream
     @wxheader{stream.h}
@@ -62,8 +63,7 @@ public:
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxStreamBuffer, wxInputStream, wxBufferedOutputStream
+    @see wxStreamBuffer, wxInputStream, wxBufferedOutputStream
 */
 class wxBufferedInputStream : public wxFilterInputStream
 {
@@ -72,6 +72,7 @@ public:
 };
 
 
+
 /**
     @class wxStreamBuffer
     @wxheader{stream.h}
@@ -80,8 +81,7 @@ public:
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxStreamBase
+    @see wxStreamBase
 */
 class wxStreamBuffer
 {
@@ -95,8 +95,8 @@ public:
         buffer continues to be used, trying to call functions in the (destroyed)
         stream. It is advised to use this feature only in very local area of the
         program.
-        
-        @sa @ref setbufferio() wxStreamBuffer:SetBufferIO
+
+        @see @ref setbufferio() wxStreamBuffer:SetBufferIO
     */
     wxStreamBuffer(wxStreamBase& stream, BufMode mode);
     wxStreamBuffer(BufMode mode);
@@ -119,8 +119,8 @@ public:
         @e flushable. This flag allows (when it has the @false value) or forbids
         (when it has the @true value) the stream buffer to resize dynamically the IO
         buffer.
-        
-        @sa SetBufferIO()
+
+        @see SetBufferIO()
     */
     void Fixed(bool fixed);
 
@@ -130,7 +130,7 @@ public:
     bool FlushBuffer();
 
     /**
-        Toggles the flushable flag. If @e flushable is disabled, no data are sent
+        Toggles the flushable flag. If @a flushable is disabled, no data are sent
         to the parent stream.
     */
     void Flushable(bool flushable);
@@ -138,27 +138,27 @@ public:
     /**
         Returns a pointer on the end of the stream buffer.
     */
-    void * GetBufferEnd();
+    void* GetBufferEnd() const;
 
     /**
         Returns a pointer on the current position of the stream buffer.
     */
-    void * GetBufferPos();
+    void* GetBufferPos() const;
 
     /**
         Returns the size of the buffer.
     */
-    size_t GetBufferSize();
+    size_t GetBufferSize() const;
 
     /**
         Returns a pointer on the start of the stream buffer.
     */
-    void * GetBufferStart();
+    void* GetBufferStart() const;
 
     /**
         Gets a single char from the stream buffer. It acts like the Read call.
-        
-        @sa Read()
+
+        @see Read()
     */
     char GetChar();
 
@@ -170,30 +170,30 @@ public:
     /**
         Returns the current position (counted in bytes) in the stream buffer.
     */
-    off_t GetIntPosition();
+    off_t GetIntPosition() const;
 
     /**
         Returns the amount of bytes read during the last IO call to the parent stream.
     */
-    size_t GetLastAccess();
+    size_t GetLastAccess() const;
 
     /**
         Puts a single char to the stream buffer.
-        
-        @sa Read()
+
+        @see Read()
     */
     void PutChar(char c);
 
     //@{
     /**
-        Copies data to @e buffer. The function returns when @e buffer is full or when
+        Copies data to @e buffer. The function returns when @a buffer is full or when
         there isn't
         any more data in the current buffer.
-        
-        @sa Write()
+
+        @see Write()
     */
-    size_t Read(void * buffer, size_t size);
-    Return value size_t Read(wxStreamBuffer * buffer);
+    size_t Read(void* buffer, size_t size);
+    Return value size_t Read(wxStreamBuffer* buffer);
     //@}
 
     /**
@@ -203,29 +203,23 @@ public:
 
     /**
         Changes the current position.
-        
-        @e mode may be one of the following:
-        
-        
+        @a mode may be one of the following:
+
         @b wxFromStart
-        
-        
+
         The position is counted from the start of the stream.
-        
+
         @b wxFromCurrent
-        
-        
+
         The position is counted from the current position of the stream.
-        
+
         @b wxFromEnd
-        
-        
+
         The position is counted from the end of the stream.
-        
-        
+
         @returns Upon successful completion, it returns the new offset as
-                   measured in bytes from the beginning of the stream.
-                   Otherwise, it returns wxInvalidOffset.
+                 measured in bytes from the beginning of the stream.
+                 Otherwise, it returns wxInvalidOffset.
     */
     off_t Seek(off_t pos, wxSeekMode mode);
 
@@ -233,8 +227,8 @@ public:
     /**
         Destroys or invalidates the previous IO buffer and allocates a new one of the
         specified size.
-        
-        @sa Fixed(), Flushable()
+
+        @see Fixed(), Flushable()
     */
     void SetBufferIO(char* buffer_start, char* buffer_end);
     Remarks See also
@@ -261,15 +255,14 @@ public:
         the @e real position in the stream and from the internal buffer position: so
         it gives you the position in the @e real stream counted from the start of
         the stream.
-        
+
         @returns Returns the current position in the stream if possible,
-                   wxInvalidOffset in the other case.
+                 wxInvalidOffset in the other case.
     */
-    off_t Tell();
+    off_t Tell() const;
 
     /**
         Truncates the buffer to the current position.
-        
         Note: Truncate() cannot be used to enlarge the buffer. This is
         usually not needed since the buffer expands automatically.
     */
@@ -279,12 +272,13 @@ public:
     /**
         See Read().
     */
-    size_t Write(const void * buffer, size_t size);
-    size_t Write(wxStreamBuffer * buffer);
+    size_t Write(const void* buffer, size_t size);
+    size_t Write(wxStreamBuffer* buffer);
     //@}
 };
 
 
+
 /**
     @class wxOutputStream
     @wxheader{stream.h}
@@ -311,7 +305,6 @@ public:
         Closes the stream, returning @false if an error occurs. The
         stream is closed implicitly in the destructor if Close() is not
         called explicitly.
-        
         If this stream wraps another stream or some other resource such
         as a file, then the underlying resource is closed too if it is owned
         by this stream, or left open otherwise.
@@ -323,23 +316,22 @@ public:
         Write(). It may return 0 even if there is no
         error on the stream if it is only temporarily impossible to write to it.
     */
-    size_t LastWrite();
+    size_t LastWrite() const;
 
     /**
         Puts the specified character in the output queue and increments the
         stream position.
     */
-#define void PutC(char c)     /* implementation is private */
+    void PutC(char c);
 
     /**
         Changes the stream current position.
-        
+
         @param pos
-        Offset to seek to.
-        
+            Offset to seek to.
         @param mode
-        One of wxFromStart, wxFromEnd, wxFromCurrent.
-        
+            One of wxFromStart, wxFromEnd, wxFromCurrent.
+
         @returns The new stream position or wxInvalidOffset on error.
     */
     off_t SeekO(off_t pos, wxSeekMode mode = wxFromStart);
@@ -347,7 +339,7 @@ public:
     /**
         Returns the current stream position.
     */
-    off_t TellO();
+    off_t TellO() const;
 
     //@{
     /**
@@ -355,12 +347,13 @@ public:
         in the current stream. The data is read until an error is raised
         by one of the two streams.
     */
-    wxOutputStream Write(const void * buffer, size_t size);
+    wxOutputStream Write(const void* buffer, size_t size);
     wxOutputStream Write(wxInputStream& stream_in);
     //@}
 };
 
 
+
 /**
     @class wxFilterClassFactory
     @wxheader{stream.h}
@@ -385,8 +378,7 @@ public:
     @library{wxbase}
     @category{FIXME}
 
-    @seealso
-    wxFilterInputStream, wxFilterOutputStream, wxArchiveClassFactory, @ref
+    @see wxFilterInputStream, wxFilterOutputStream, wxArchiveClassFactory, @ref
     overview_wxarc "Archive formats such as zip"
 */
 class wxFilterClassFactory : public wxObject
@@ -395,19 +387,17 @@ public:
     /**
         Returns @true if this factory can handle the given protocol, MIME type, HTTP
         encoding or file extension.
-        
         When using wxSTREAM_FILEEXT for the second parameter, the first parameter
         can be a complete filename rather than just an extension.
     */
     bool CanHandle(const wxString& protocol,
-                   wxStreamProtocolType type = wxSTREAM_PROTOCOL);
+                   wxStreamProtocolType type = wxSTREAM_PROTOCOL) const;
 
     /**
         A static member that finds a factory that can handle a given protocol, MIME
         type, HTTP encoding or file extension.  Returns a pointer to the class
         factory if found, or @NULL otherwise. It does not give away ownership of the
         factory.
-        
         When using wxSTREAM_FILEEXT for the second parameter, the first parameter
         can be a complete filename rather than just an extension.
     */
@@ -417,61 +407,56 @@ public:
     //@{
     /**
         GetFirst and GetNext can be used to enumerate the available factories.
-        
         For example, to list them:
+
         GetFirst()/GetNext() return a pointer to a factory or @NULL if no more
         are available. They do not give away ownership of the factory.
     */
-    static const wxFilterClassFactory* GetFirst();
-    const wxFilterClassFactory* GetNext();
+    static const wxFilterClassFactory* GetFirst() const;
+    const wxFilterClassFactory* GetNext() const;
     //@}
 
     /**
         Returns the wxFileSystem protocol supported by this factory. Equivalent
         to wxString(*GetProtcols()).
     */
-    wxString GetProtocol();
+    wxString GetProtocol() const;
 
     /**
         Returns the protocols, MIME types, HTTP encodings or file extensions
         supported by this factory, as an array of null terminated strings. It does
         not give away ownership of the array or strings.
-        
         For example, to list the file extensions a factory supports:
     */
-    const wxChar * const* GetProtocols(wxStreamProtocolType type = wxSTREAM_PROTOCOL);
+    const wxChar* const* GetProtocols(wxStreamProtocolType type = wxSTREAM_PROTOCOL) const;
 
     //@{
     /**
         Create a new input or output stream to decompress or compress a given stream.
-        
         If the parent stream is passed as a pointer then the new filter stream
         takes ownership of it. If it is passed by reference then it does not.
     */
-    wxFilterInputStream* NewStream(wxInputStream& stream);
-    wxFilterOutputStream* NewStream(wxOutputStream& stream);
-    wxFilterInputStream* NewStream(wxInputStream* stream);
-    wxFilterOutputStream* NewStream(wxOutputStream* stream);
+    wxFilterInputStream* NewStream(wxInputStream& stream) const;
+    const wxFilterOutputStream*  NewStream(wxOutputStream& stream) const;
+    const wxFilterInputStream*  NewStream(wxInputStream* stream) const;
+    const wxFilterOutputStream*  NewStream(wxOutputStream* stream) const;
     //@}
 
     /**
-        Remove the file extension of @e location if it is one of the file
+        Remove the file extension of @a location if it is one of the file
         extensions handled by this factory.
     */
-    wxString PopExtension(const wxString& location);
+    wxString PopExtension(const wxString& location) const;
 
     /**
         Adds this class factory to the list returned
         by @ref getfirst() GetFirst()/GetNext.
-        
         It is not necessary to do this to use the filter streams. It is usually
         used when implementing streams, typically the implementation will
         add a static instance of its factory class.
-        
         It can also be used to change the order of a factory already in the list,
         bringing it to the front. This isn't a thread safe operation
         so can't be done when other threads are running that will be using the list.
-        
         The list does not take ownership of the factory.
     */
     void PushFront();
@@ -479,16 +464,15 @@ public:
     /**
         Removes this class factory from the list returned
         by @ref getfirst() GetFirst()/GetNext.
-        
         Removing from the list isn't a thread safe operation
         so can't be done when other threads are running that will be using the list.
-        
         The list does not own the factories, so removing a factory does not delete it.
     */
     void Remove();
 };
 
 
+
 /**
     @class wxFilterOutputStream
     @wxheader{stream.h}
@@ -501,8 +485,7 @@ public:
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxFilterClassFactory, wxFilterInputStream
+    @see wxFilterClassFactory, wxFilterInputStream
 */
 class wxFilterOutputStream : public wxOutputStream
 {
@@ -510,7 +493,6 @@ public:
     //@{
     /**
         Initializes a "filter" stream.
-        
         If the parent stream is passed as a pointer then the new filter stream
         takes ownership of it. If it is passed by reference then it does not.
     */
@@ -520,6 +502,7 @@ public:
 };
 
 
+
 /**
     @class wxFilterInputStream
     @wxheader{stream.h}
@@ -533,8 +516,7 @@ public:
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxFilterClassFactory, wxFilterOutputStream
+    @see wxFilterClassFactory, wxFilterOutputStream
 */
 class wxFilterInputStream : public wxInputStream
 {
@@ -542,7 +524,6 @@ public:
     //@{
     /**
         Initializes a "filter" stream.
-        
         If the parent stream is passed as a pointer then the new filter stream
         takes ownership of it. If it is passed by reference then it does not.
     */
@@ -552,6 +533,7 @@ public:
 };
 
 
+
 /**
     @class wxBufferedOutputStream
     @wxheader{stream.h}
@@ -567,8 +549,7 @@ public:
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxStreamBuffer, wxOutputStream
+    @see wxStreamBuffer, wxOutputStream
 */
 class wxBufferedOutputStream : public wxFilterOutputStream
 {
@@ -597,6 +578,7 @@ public:
 };
 
 
+
 /**
     @class wxInputStream
     @wxheader{stream.h}
@@ -623,24 +605,24 @@ public:
         Returns @true if some data is available in the stream right now, so that
         calling Read() wouldn't block.
     */
-    bool CanRead();
+    bool CanRead() const;
 
     /**
         Returns @true after an attempt has been made to read past the end of the
         stream.
     */
-#define bool Eof()     /* implementation is private */
+    bool Eof() const;
 
     /**
         Returns the first character in the input queue and removes it,
         blocking until it appears if necessary.
     */
-#define char GetC()     /* implementation is private */
+    char GetC();
 
     /**
         Returns the last number of bytes read.
     */
-    size_t LastRead();
+    size_t LastRead() const;
 
     /**
         Returns the first character in the input queue without removing it.
@@ -651,11 +633,11 @@ public:
     /**
         Reads data from the input queue and stores it in the specified output stream.
         The data is read until an error is raised by one of the two streams.
-        
+
         @returns This function returns a reference on the current object, so the
-                   user can test any states of the stream right away.
+                 user can test any states of the stream right away.
     */
-    wxInputStream Read(void * buffer, size_t size);
+    wxInputStream Read(void* buffer, size_t size);
     Warning Return value
     This function returns a reference on the current object, so the user can test
     any states of the stream right away.
@@ -664,13 +646,12 @@ public:
 
     /**
         Changes the stream current position.
-        
+
         @param pos
-        Offset to seek to.
-        
+            Offset to seek to.
         @param mode
-        One of wxFromStart, wxFromEnd, wxFromCurrent.
-        
+            One of wxFromStart, wxFromEnd, wxFromCurrent.
+
         @returns The new stream position or wxInvalidOffset on error.
     */
     off_t SeekI(off_t pos, wxSeekMode mode = wxFromStart);
@@ -678,7 +659,7 @@ public:
     /**
         Returns the current stream position.
     */
-    off_t TellI();
+    off_t TellI() const;
 
     //@{
     /**
@@ -691,6 +672,7 @@ public:
 };
 
 
+
 /**
     @class wxStreamBase
     @wxheader{stream.h}
@@ -702,8 +684,7 @@ public:
     @library{wxbase}
     @category{streams}
 
-    @seealso
-    wxStreamBuffer
+    @see wxStreamBuffer
 */
 class wxStreamBase
 {
@@ -720,58 +701,52 @@ public:
 
     /**
         This function returns the last error.
-        
-        
+
         @b wxSTREAM_NO_ERROR
-        
-        
+
         No error occurred.
-        
+
         @b wxSTREAM_EOF
-        
-        
+
         An End-Of-File occurred.
-        
+
         @b wxSTREAM_WRITE_ERROR
-        
-        
+
         A generic error occurred on the last write call.
-        
+
         @b wxSTREAM_READ_ERROR
-        
-        
+
         A generic error occurred on the last read call.
     */
-    wxStreamError GetLastError();
+    wxStreamError GetLastError() const;
 
     /**
         Returns the length of the stream in bytes. If the length cannot be determined
         (this is always the case for socket streams for example), returns
         @c wxInvalidOffset.
-        
-        This function is new since wxWidgets version 2.5.4
+
+        @since 2.5.4
     */
-    wxFileOffset GetLength();
+    wxFileOffset GetLength() const;
 
     /**
         GetLength()
-        
         This function returns the size of the stream. For example, for a file it is the
         size of the file.
     */
-    size_t GetSize();
+    size_t GetSize() const;
 
     /**
         Returns @true if no error occurred on the stream.
-        
-        @sa GetLastError()
+
+        @see GetLastError()
     */
-#define virtual bool IsOk()     /* implementation is private */
+    virtual bool IsOk() const;
 
     /**
         Returns @true if the streams supports seeking to arbitrary offsets.
     */
-    bool IsSeekable();
+    bool IsSeekable() const;
 
     /**
         Internal function. It is called when the stream wants to read data of the
@@ -789,10 +764,11 @@ public:
         Internal function. Is is called when the stream needs to know the
         real position.
     */
-    off_t OnSysTell();
+    off_t OnSysTell() const;
 
     /**
         See OnSysRead().
     */
-    size_t OnSysWrite(const void * buffer, size_t bufsize);
+    size_t OnSysWrite(const void* buffer, size_t bufsize);
 };
+