00001 // 00002 // aegis - project change supervisor 00003 // Copyright (C) 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_BUNZIP2_H 00021 #define LIBAEGIS_INPUT_BUNZIP2_H 00022 00023 #include <common/ac/bzlib.h> 00024 00025 #include <libaegis/input.h> 00026 00031 class input_bunzip2: 00032 public input_ty 00033 { 00034 public: 00038 virtual ~input_bunzip2(); 00039 00046 input_bunzip2(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 enum { BUFFER_SIZE = 1 << 14 }; 00081 00082 bz_stream stream; 00083 bool end_of_file; 00084 long pos; 00085 char *buf; 00086 nstring filename; 00087 00097 void bzlib_fatal_error(int err); 00098 00102 input_bunzip2(); 00103 00107 input_bunzip2(const input_bunzip2 &arg); 00108 00112 input_bunzip2 &operator=(const input_bunzip2 &arg); 00113 }; 00114 00115 input input_bunzip2_open(input &ip); 00116 00117 #endif // LIBAEGIS_INPUT_BUNZIP2_H