simgear/Misc/zfstream.hxx

160 lines
3.9 KiB
C++
Raw Normal View History

// A C++ I/O streams interface to the zlib gz* functions
//
// Written by Bernie Bright, 1998
// Based on zlib/contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu>
//
// Copyright (C) 1998 Bernie Bright - bbright@c031.aone.net.au
//
// 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 2 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, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// $Id$
// (Log is kept at end of this file)
1998-09-02 03:06:28 +08:00
#ifndef _zfstream_hxx
#define _zfstream_hxx
#include "zlib/zlib.h"
#include "Include/compiler.h"
1998-09-02 03:06:28 +08:00
#ifdef FG_HAVE_STD_INCLUDES
1998-09-02 03:06:28 +08:00
# include <streambuf>
# include <istream>
1998-09-02 03:06:28 +08:00
# define ios_openmode ios_base::openmode
# define ios_in ios_base::in
# define ios_out ios_base::out
# define ios_app ios_base::app
# define ios_binary ios_base::binary
1998-09-02 03:06:28 +08:00
# define ios_seekdir ios_base::seekdir
1998-09-02 03:06:28 +08:00
# define ios_badbit ios_base::badbit
# define ios_failbit ios_base::failbit
1998-09-02 03:06:28 +08:00
#else
1998-09-02 03:06:28 +08:00
# ifdef FG_HAVE_STREAMBUF
# include <streambuf.h>
# include <istream.h>
# else
# include <iostream.h>
# endif
1998-09-02 03:06:28 +08:00
//# define ios_openmode ios::open_mode
# define ios_openmode int
# define ios_in ios::in
# define ios_out ios::out
# define ios_app ios::app
# define ios_binary ios::binary
1998-09-02 03:06:28 +08:00
# define ios_seekdir ios::seek_dir
1998-09-02 03:06:28 +08:00
# define ios_badbit ios::badbit
# define ios_failbit ios::failbit
1998-09-02 03:06:28 +08:00
// Dummy up some char traits for now.
template<class charT> struct char_traits{};
1998-09-02 03:06:28 +08:00
FG_TEMPLATE_NULL
struct char_traits<char>
{
typedef char char_type;
typedef int int_type;
typedef streampos pos_type;
typedef streamoff off_type;
1998-09-02 03:06:28 +08:00
static int_type eof() { return EOF; }
1998-09-02 03:06:28 +08:00
};
#endif // FG_HAVE_STD_INCLUDES
1998-09-02 03:06:28 +08:00
//-----------------------------------------------------------------------------
//
//
//
class gzfilebuf : public streambuf
{
1998-09-02 03:06:28 +08:00
public:
#ifndef FG_HAVE_STD_INCLUDES
typedef char_traits<char> traits_type;
typedef char_traits<char>::int_type int_type;
typedef char_traits<char>::pos_type pos_type;
typedef char_traits<char>::off_type off_type;
#endif
1998-09-02 03:06:28 +08:00
gzfilebuf();
virtual ~gzfilebuf();
1998-09-02 03:06:28 +08:00
gzfilebuf* open( const char* name, ios_openmode io_mode );
gzfilebuf* attach( int file_descriptor, ios_openmode io_mode );
gzfilebuf* close();
1998-09-02 03:06:28 +08:00
// int setcompressionlevel( int comp_level );
// int setcompressionstrategy( int comp_strategy );
bool is_open() const { return (file != NULL); }
virtual streampos seekoff( streamoff off, ios_seekdir way, int which );
virtual int sync();
1998-09-02 03:06:28 +08:00
protected:
1998-09-02 03:06:28 +08:00
virtual int_type underflow();
virtual int_type overflow( int_type c = traits_type::eof() );
1998-09-02 03:06:28 +08:00
private:
1998-09-02 03:06:28 +08:00
int_type flushbuf();
int fillbuf();
1998-09-02 03:06:28 +08:00
// Convert io_mode to "rwab" string.
void cvt_iomode( char* mode_str, ios_openmode io_mode );
1998-09-02 03:06:28 +08:00
private:
1998-09-02 03:06:28 +08:00
gzFile file;
ios_openmode mode;
bool own_file_descriptor;
1998-09-02 03:06:28 +08:00
// Get (input) buffer.
int ibuf_size;
char* ibuffer;
1998-09-02 03:06:28 +08:00
static const int page_size = 4096;
1998-09-02 03:06:28 +08:00
private:
// Not defined
gzfilebuf( const gzfilebuf& );
void operator= ( const gzfilebuf& );
1998-09-02 03:06:28 +08:00
};
//-----------------------------------------------------------------------------
//
//
//
struct gzifstream_base
1998-09-02 03:06:28 +08:00
{
gzifstream_base() {}
1998-09-02 03:06:28 +08:00
gzfilebuf gzbuf;
};
1998-09-02 03:06:28 +08:00
#endif // _zfstream_hxx
// $Log$
// Revision 1.4 1998/11/06 14:05:16 curt
// More portability improvements by Bernie Bright.
//