]> git.mxchange.org Git - flightgear.git/blob - Lib/Misc/zfstream.hxx
Merge FG_Lib as subdirectory
[flightgear.git] / Lib / 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 FG_USING_STD(streambuf);
48 FG_USING_STD(ios_base);
49 FG_USING_STD(streampos);
50 FG_USING_STD(streamoff);
51
52 #else
53
54 #  ifdef FG_HAVE_STREAMBUF
55 #    include <streambuf.h>
56 #    include <istream.h>
57 #  else
58 #    include <iostream.h>
59 #  endif
60
61 //#  define ios_openmode ios::open_mode
62 #  define ios_openmode int
63 #  define ios_in       ios::in
64 #  define ios_out      ios::out
65 #  define ios_app      ios::app
66
67 #if defined(__GNUC__) && __GNUC_MINOR__ < 8
68 #  define ios_binary   ios::bin
69 #elif defined( FG_HAVE_NATIVE_SGI_COMPILERS )
70 #  define ios_binary   0
71 #else
72 #  define ios_binary   ios::binary
73 #endif
74
75 #  define ios_seekdir  ios::seek_dir
76
77 #  define ios_badbit   ios::badbit
78 #  define ios_failbit  ios::failbit
79
80 #  include "Include/fg_traits.hxx"
81
82 #endif // FG_HAVE_STD_INCLUDES
83
84 //-----------------------------------------------------------------------------
85 //
86 //
87 //
88 class gzfilebuf : public streambuf
89 {
90 public:
91
92 #ifndef FG_HAVE_STD_INCLUDES
93     typedef char_traits<char>           traits_type;
94     typedef char_traits<char>::int_type int_type;
95     typedef char_traits<char>::pos_type pos_type;
96     typedef char_traits<char>::off_type off_type;
97 #endif
98
99     gzfilebuf();
100     virtual ~gzfilebuf();
101
102     gzfilebuf* open( const char* name, ios_openmode io_mode );
103     gzfilebuf* attach( int file_descriptor, ios_openmode io_mode );
104     gzfilebuf* close();
105
106 //     int setcompressionlevel( int comp_level );
107 //     int setcompressionstrategy( int comp_strategy );
108     bool is_open() const { return (file != NULL); }
109     virtual streampos seekoff( streamoff off, ios_seekdir way, int which );
110     virtual int sync();
111
112 protected:
113
114     virtual int_type underflow();
115     virtual int_type overflow( int_type c = traits_type::eof() );
116
117 private:
118
119     int_type flushbuf();
120     int fillbuf();
121
122     // Convert io_mode to "rwab" string.
123     void cvt_iomode( char* mode_str, ios_openmode io_mode );
124
125 private:
126
127     gzFile file;
128     ios_openmode mode;
129     bool own_file_descriptor;
130
131     // Get (input) buffer.
132     int ibuf_size;
133     char* ibuffer;
134
135     enum { page_size = 4096 };
136
137 private:
138     // Not defined
139     gzfilebuf( const gzfilebuf& );
140     void operator= ( const gzfilebuf& );
141 };
142
143 //-----------------------------------------------------------------------------
144 //
145 // 
146 //
147 struct gzifstream_base
148 {
149     gzifstream_base() {}
150
151     gzfilebuf gzbuf;
152 };
153
154 #endif // _zfstream_hxx
155
156 // $Log$
157 // Revision 1.9  1999/03/08 22:00:12  curt
158 // Tweak for native SGI compilers.
159 //
160 // Revision 1.8  1999/02/26 22:08:10  curt
161 // Added initial support for native SGI compilers.
162 //
163 // Revision 1.7  1999/01/19 20:41:49  curt
164 // Portability updates contributed by Bernie Bright.
165 //
166 // Revision 1.6  1998/12/07 21:10:26  curt
167 // Portability improvements.
168 //
169 // Revision 1.5  1998/11/06 21:17:29  curt
170 // Converted to new logstream debugging facility.  This allows release
171 // builds with no messages at all (and no performance impact) by using
172 // the -DFG_NDEBUG flag.
173 //
174 // Revision 1.4  1998/11/06 14:05:16  curt
175 // More portability improvements by Bernie Bright.
176 //
177