//
// aegis - project change supervisor
// Copyright (C) 1999, 2002, 2005, 2006, 2008 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
// .
//
#ifndef LIBAEGIS_OUTPUT_GZIP_H
#define LIBAEGIS_OUTPUT_GZIP_H
#include
#include
/**
* The output_gzip class is used to represent an output filter which
* compresses the data before writing it to the deeper output stream.
*/
class output_gzip:
public output
{
public:
/**
* The destructor.
*/
virtual ~output_gzip();
private:
/**
* The constructor. It is private on purpose, use the #create
* class method instead.
*
* \param deeper
* the output stream this filter will write its output to.
*/
output_gzip(const output::pointer &deeper);
public:
/**
* The create class method is sued to create new dynamically
* allocated instances of this class.
*
* \param deeper
* the output stream this filter will write its output to.
*/
static pointer create(const output::pointer &deeper);
protected:
// See base class for documentation.
nstring filename() const;
// See base class for documentation.
long ftell_inner() const;
// See base class for documentation.
void write_inner(const void *data, size_t length);
// See base class for documentation.
int page_width() const;
// See base class for documentation.
int page_length() const;
// See base class for documentation.
const char *type_name() const;
// See base class for documentation.
void end_of_line_inner();
private:
/**
* The deeper instance variable is used to remember the output
* stream this filter will write its output to.
*/
output::pointer deeper;
/**
* The stream instance variable is used to remember somthign that
* the gzip code wants to remember. It is opaque to us.
*/
z_stream stream;
/**
* The outbuf instance variable is used to remember the buffered
* output data.
*/
Byte *outbuf;
/**
* The crc instance variable is used to remember the crc32 of the
* uncompressed data.
*/
uLong crc;
/**
* The pos instance variable is used to remember the current output
* position.
*/
long pos;
/**
* The bol instance variable is used to remember whether or not the
* output is positioned at the beginning of a lone.
*/
bool bol;
/**
* The drop_dead method is used to report a fatal error from the
* gzip engine.
*/
void drop_dead(int err);
/**
* The default constructor. Do not use.
*/
output_gzip();
/**
* The copy constructor. Do not use.
*/
output_gzip(const output_gzip &);
/**
* The assignment operator. Do not use.
*/
output_gzip &operator=(const output_gzip &);
};
#endif // LIBAEGIS_OUTPUT_GZIP_H