00001 // 00002 // aegis - project change supervisor 00003 // Copyright (C) 1999, 2002, 2005, 2006, 2008 Peter Miller 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program. If not, see 00017 // <http://www.gnu.org/licenses/>. 00018 // 00019 00020 #ifndef LIBAEGIS_INPUT_GUNZIP_H 00021 #define LIBAEGIS_INPUT_GUNZIP_H 00022 00023 #include <common/ac/zlib.h> 00024 00025 #include <libaegis/input.h> 00026 00031 class input_gunzip: 00032 public input_ty 00033 { 00034 public: 00038 virtual ~input_gunzip(); 00039 00046 input_gunzip(input &deeper); 00047 00048 // See base class for documentation. 00049 nstring name(); 00050 00051 // See base class for documentation. 00052 long length(); 00053 00054 // See base class for documentation. 00055 void keepalive(); 00056 00057 // See base class for documentation. 00058 long read_inner(void *data, size_t nbytes); 00059 00060 // See base class for documentation. 00061 long ftell_inner(); 00062 00063 // See base class for documentation. 00064 bool is_remote() const; 00065 00071 static bool candidate(input &deeper); 00072 00073 private: 00078 input deeper; 00079 00080 z_stream stream; 00081 bool z_eof; 00082 uLong crc; 00083 long pos; 00084 Byte *buf; 00085 nstring filename; 00086 00087 void zlib_fatal_error(int err); 00088 long getLong(); 00089 void read_header(); 00090 00094 input_gunzip(); 00095 00099 input_gunzip(const input_gunzip &arg); 00100 00104 input_gunzip &operator=(const input_gunzip &arg); 00105 }; 00106 00107 input input_gunzip_open(input &ip); 00108 00109 #endif // LIBAEGIS_INPUT_GUNZIP_H