1 // ============================================================================
2 // gzstream, C++ iostream classes wrapping the zlib compression library.
3 // Copyright (C) 2001  Deepak Bandyopadhyay, Lutz Kettner
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 // ============================================================================
19 //
20 // File          : gzstream.C
21 // Revision      : $Revision: 1.4 $
22 // Revision_date : $Date: 2005/04/26 10:30:24 $
23 // Author(s)     : Deepak Bandyopadhyay, Lutz Kettner
24 //
25 // Standard streambuf implementation following Nicolai Josuttis, "The
26 // Standard C++ Library".
27 // ============================================================================
28 
29 #include <config.h>
30 
31 #include "support/gzstream.h"
32 
33 #include <iostream>
34 #ifdef HAVE_STRING_H
35 # include <string.h> // for memcpy
36 #endif
37 
38 using namespace std;
39 
40 #ifdef GZSTREAM_NAMESPACE
41 namespace GZSTREAM_NAMESPACE {
42 #endif
43 
44 // ----------------------------------------------------------------------------
45 // Internal classes to implement gzstream. See header file for user classes.
46 // ----------------------------------------------------------------------------
47 
48 // --------------------------------------
49 // class gzstreambuf:
50 // --------------------------------------
51 
open(const char * name,int open_mode)52 gzstreambuf* gzstreambuf::open( const char* name, int open_mode) {
53     if ( is_open())
54         return (gzstreambuf*)0;
55     mode = open_mode;
56     // no append nor read/write mode
57     if ((mode & ios::ate) || (mode & ios::app)
58         || ((mode & ios::in) && (mode & ios::out)))
59         return (gzstreambuf*)0;
60     char  fmode[10];
61     char* fmodeptr = fmode;
62     if ( mode & ios::in)
63         *fmodeptr++ = 'r';
64     else if ( mode & ios::out)
65         *fmodeptr++ = 'w';
66     *fmodeptr++ = 'b';
67     *fmodeptr = '\0';
68     file = gzopen( name, fmode);
69     if (file == 0)
70         return (gzstreambuf*)0;
71     opened = 1;
72     return this;
73 }
74 
close()75 gzstreambuf * gzstreambuf::close() {
76     if ( is_open()) {
77         sync();
78         opened = 0;
79         if ( gzclose( file) == Z_OK)
80             return this;
81     }
82     return (gzstreambuf*)0;
83 }
84 
underflow()85 int gzstreambuf::underflow() { // used for input buffer only
86     if ( gptr() && ( gptr() < egptr()))
87         return * reinterpret_cast<unsigned char *>( gptr());
88 
89     if ( ! (mode & ios::in) || ! opened)
90         return EOF;
91     // Josuttis' implementation of inbuf
92     int n_putback = gptr() - eback();
93     if ( n_putback > 4)
94         n_putback = 4;
95     memcpy( buffer + (4 - n_putback), gptr() - n_putback, n_putback);
96 
97     int num = gzread( file, buffer+4, bufferSize-4);
98     if (num <= 0) // ERROR or EOF
99         return EOF;
100 
101     // reset buffer pointers
102     setg( buffer + (4 - n_putback),   // beginning of putback area
103           buffer + 4,                 // read position
104           buffer + 4 + num);          // end of buffer
105 
106     // return next character
107     return * reinterpret_cast<unsigned char *>( gptr());
108 }
109 
flush_buffer()110 int gzstreambuf::flush_buffer() {
111     // Separate the writing of the buffer from overflow() and
112     // sync() operation.
113     int w = pptr() - pbase();
114     if ( gzwrite( file, pbase(), w) != w)
115         return EOF;
116     pbump( -w);
117     return w;
118 }
119 
overflow(int c)120 int gzstreambuf::overflow( int c) { // used for output buffer only
121     if ( ! ( mode & ios::out) || ! opened)
122         return EOF;
123     if (c != EOF) {
124         *pptr() = c;
125         pbump(1);
126     }
127     if ( flush_buffer() == EOF)
128         return EOF;
129     return c;
130 }
131 
sync()132 int gzstreambuf::sync() {
133     // Changed to use flush_buffer() instead of overflow( EOF)
134     // which caused improper behavior with endl and flush(),
135     // bug reported by Vincent Ricard.
136     if ( pptr() && pptr() > pbase()) {
137         if ( flush_buffer() == EOF)
138             return -1;
139     }
140     return 0;
141 }
142 
143 // --------------------------------------
144 // class gzstreambase:
145 // --------------------------------------
146 
gzstreambase(const char * name,int mode)147 gzstreambase::gzstreambase( const char* name, int mode) {
148     init( &buf);
149     open( name, mode);
150 }
151 
~gzstreambase()152 gzstreambase::~gzstreambase() {
153     buf.close();
154 }
155 
open(const char * name,int open_mode)156 void gzstreambase::open( const char* name, int open_mode) {
157     if ( ! buf.open( name, open_mode))
158         clear( rdstate() | ios::badbit);
159 }
160 
close()161 void gzstreambase::close() {
162     if ( buf.is_open())
163         if ( ! buf.close())
164             clear( rdstate() | ios::badbit);
165 }
166 
167 #ifdef GZSTREAM_NAMESPACE
168 } // namespace GZSTREAM_NAMESPACE
169 #endif
170 
171 // ============================================================================
172 // EOF //
173