Regina Calculation Engine
Public Member Functions | Static Public Attributes | Protected Member Functions | List of all members
regina::ZBuffer Class Reference

A common base class for compression/decompression stream buffers. More...

#include <utilities/zstream.h>

Inheritance diagram for regina::ZBuffer:
regina::CompressionBuffer regina::DecompressionBuffer

Public Member Functions

virtual ~ZBuffer ()
 Destroys this stream buffer. More...
 
virtual int overflow (int c)
 Writes the given character to the underlying file, compressing en route. More...
 
virtual int underflow ()
 Reads the next character from the underlying file, decompressing en route. More...
 
virtual int uflow ()
 Reads the next character from the underlying file, decompressing en route. More...
 
virtual std::streamsize xsputn (const char *s, std::streamsize n)
 Writes the given set of characters to the underlying file, compressing en route. More...
 
virtual std::streamsize xsgetn (char *s, std::streamsize n)
 Reads a set of characters from the underlying file, decompressing en route. More...
 
virtual int pbackfail (int c)
 Pushes the given character back into the underlying input stream. More...
 
virtual int sync ()
 Flushes all input/output buffers. More...
 
int close ()
 Closes the underlying file. More...
 
void showError (std::ostream &out)
 Writes a description of the last (de)compression error that occurred. More...
 

Static Public Attributes

static const int zEOF
 The end-of-file marker used with this stream buffer. More...
 

Protected Member Functions

 ZBuffer ()
 Creates a new stream buffer. More...
 
int open (const char *path, const char *mode)
 Opens the given file for (de)compressed reading or writing. More...
 

Detailed Description

A common base class for compression/decompression stream buffers.

This class should not be instantiated directly; see classes CompressionBuffer and DecompressionBuffer instead.

The standard zlib compression library is used for compression and decompression.

Python:
Not present.

Constructor & Destructor Documentation

regina::ZBuffer::ZBuffer ( )
inlineprotected

Creates a new stream buffer.

regina::ZBuffer::~ZBuffer ( )
inlinevirtual

Destroys this stream buffer.

Any underlying file that is open will be closed.

Member Function Documentation

int regina::ZBuffer::close ( )

Closes the underlying file.

If no file is open, this routine does nothing.

Returns
0 on success, or zEOF on error.
int regina::ZBuffer::open ( const char *  path,
const char *  mode 
)
protected

Opens the given file for (de)compressed reading or writing.

If a file is already open, it will be closed before the new file is opened.

Internationalisation:
This routine makes no assumptions about the character encoding used in the given file name, and simply passes it through unchanged to low-level C/C++ file I/O routines.
Parameters
paththe pathname of the new file to open.
modethe mode in which to open the file; this must be "rb" for reading or "wb" for writing.
Returns
0 on success, or zEOF on error.
int regina::ZBuffer::overflow ( int  c)
inlinevirtual

Writes the given character to the underlying file, compressing en route.

Parameters
cthe uncompressed character to write.
Returns
the given character on success, or zEOF on error.
int regina::ZBuffer::pbackfail ( int  c)
inlinevirtual

Pushes the given character back into the underlying input stream.

Warning
This routine will only succeed if the next character in the underlying input stream has not already been read.
Parameters
cthe character to push back.
Returns
the character that was pushed back, or zEOF if an error occurred.
void regina::ZBuffer::showError ( std::ostream &  out)

Writes a description of the last (de)compression error that occurred.

For the message to be meaningful, the underlying file must still be open.

Parameters
outthe output stream to which the error description should be written.
int regina::ZBuffer::sync ( )
inlinevirtual

Flushes all input/output buffers.

Returns
0 on success, or zEOF on error.
int regina::ZBuffer::uflow ( )
inlinevirtual

Reads the next character from the underlying file, decompressing en route.

The character is consumed.

Returns
the next uncompressed character, or zEOF if there is an error or there are no more characters.
int regina::ZBuffer::underflow ( )
inlinevirtual

Reads the next character from the underlying file, decompressing en route.

The character is not consumed.

Returns
the next uncompressed character, or zEOF if there is an error or there are no more characters.
virtual std::streamsize regina::ZBuffer::xsgetn ( char *  s,
std::streamsize  n 
)
virtual

Reads a set of characters from the underlying file, decompressing en route.

The characters are all consumed. Reading will stop if end-of-file is reached or an error occurs.

Parameters
sthe array into which the uncompressed characters should be placed.
nthe number of uncompressed characters to read.
Returns
the number of uncompressed characters that were actually read, or zEOF if an error occurred.
std::streamsize regina::ZBuffer::xsputn ( const char *  s,
std::streamsize  n 
)
inlinevirtual

Writes the given set of characters to the underlying file, compressing en route.

Parameters
sthe uncompressed array of characters to write.
nthe number of characters to write.
Returns
the number of uncompressed characters that were actually written, or 0 if an error occurred.

Member Data Documentation

const int regina::ZBuffer::zEOF
static

The end-of-file marker used with this stream buffer.


The documentation for this class was generated from the following file:

Copyright © 1999-2014, The Regina development team
This software is released under the GNU General Public License, with some additional permissions; see the source code for details.
For further information, or to submit a bug or other problem, please contact Ben Burton (bab@debian.org).