]> git.mxchange.org Git - flightgear.git/blob - Misc/zfstream.hxx
Converted to new logstream debugging facility. This allows release
[flightgear.git] / Misc / zfstream.hxx
1 //  A C++ I/O streams interface to the zlib gz* functions
2 //
3 // Written by Bernie Bright, 1998
4 // Based on zlib/contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu>
5 //
6 // Copyright (C) 1998  Bernie Bright - bbright@c031.aone.net.au
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23 // (Log is kept at end of this file)
24
25 #ifndef _zfstream_hxx
26 #define _zfstream_hxx
27
28 #include "zlib/zlib.h"
29 #include "Include/compiler.h"
30
31 #ifdef FG_HAVE_STD_INCLUDES
32
33 #  include <streambuf>
34 #  include <istream>
35
36 #  define ios_openmode ios_base::openmode
37 #  define ios_in       ios_base::in
38 #  define ios_out      ios_base::out
39 #  define ios_app      ios_base::app
40 #  define ios_binary   ios_base::binary
41
42 #  define ios_seekdir  ios_base::seekdir
43
44 #  define ios_badbit   ios_base::badbit
45 #  define ios_failbit  ios_base::failbit
46
47 #else
48
49 #  ifdef FG_HAVE_STREAMBUF
50 #    include <streambuf.h>
51 #    include <istream.h>
52 #  else
53 #    include <iostream.h>
54 #  endif
55
56 //#  define ios_openmode ios::open_mode
57 #  define ios_openmode int
58 #  define ios_in       ios::in
59 #  define ios_out      ios::out
60 #  define ios_app      ios::app
61 #  define ios_binary   ios::binary
62
63 #  define ios_seekdir  ios::seek_dir
64
65 #  define ios_badbit   ios::badbit
66 #  define ios_failbit  ios::failbit
67
68 #  include "Include/fg_traits.hxx"
69
70 #endif // FG_HAVE_STD_INCLUDES
71
72 //-----------------------------------------------------------------------------
73 //
74 //
75 //
76 class gzfilebuf : public streambuf
77 {
78 public:
79
80 #ifndef FG_HAVE_STD_INCLUDES
81     typedef char_traits<char>           traits_type;
82     typedef char_traits<char>::int_type int_type;
83     typedef char_traits<char>::pos_type pos_type;
84     typedef char_traits<char>::off_type off_type;
85 #endif
86
87     gzfilebuf();
88     virtual ~gzfilebuf();
89
90     gzfilebuf* open( const char* name, ios_openmode io_mode );
91     gzfilebuf* attach( int file_descriptor, ios_openmode io_mode );
92     gzfilebuf* close();
93
94 //     int setcompressionlevel( int comp_level );
95 //     int setcompressionstrategy( int comp_strategy );
96     bool is_open() const { return (file != NULL); }
97     virtual streampos seekoff( streamoff off, ios_seekdir way, int which );
98     virtual int sync();
99
100 protected:
101
102     virtual int_type underflow();
103     virtual int_type overflow( int_type c = traits_type::eof() );
104
105 private:
106
107     int_type flushbuf();
108     int fillbuf();
109
110     // Convert io_mode to "rwab" string.
111     void cvt_iomode( char* mode_str, ios_openmode io_mode );
112
113 private:
114
115     gzFile file;
116     ios_openmode mode;
117     bool own_file_descriptor;
118
119     // Get (input) buffer.
120     int ibuf_size;
121     char* ibuffer;
122
123     static const int page_size = 4096;
124
125 private:
126     // Not defined
127     gzfilebuf( const gzfilebuf& );
128     void operator= ( const gzfilebuf& );
129 };
130
131 //-----------------------------------------------------------------------------
132 //
133 // 
134 //
135 struct gzifstream_base
136 {
137     gzifstream_base() {}
138
139     gzfilebuf gzbuf;
140 };
141
142 #endif // _zfstream_hxx
143
144 // $Log$
145 // Revision 1.5  1998/11/06 21:17:29  curt
146 // Converted to new logstream debugging facility.  This allows release
147 // builds with no messages at all (and no performance impact) by using
148 // the -DFG_NDEBUG flag.
149 //
150 // Revision 1.4  1998/11/06 14:05:16  curt
151 // More portability improvements by Bernie Bright.
152 //