1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
/********************************************************************************
* *
* G Z F i l e S t r e a m C l a s s e s *
* *
*********************************************************************************
* Copyright (C) 2002,2022 by Sander Jansen. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "FXArray.h"
#include "FXHash.h"
#include "FXMutex.h"
#include "FXElement.h"
#include "FXStream.h"
#include "FXString.h"
#include "FXObject.h"
#include "FXFile.h"
#include "FXGZFileStream.h"
#ifdef HAVE_ZLIB_H
#include "zlib.h"
/*
Notes:
- Very basic compressed file I/O only.
- Updated for new stream classes 2003/07/08.
- Updated for FXFile 2005/09/03.
*/
#define BUFFERSIZE 8192
/*******************************************************************************/
namespace FX {
// Used during compression
struct ZBlock {
z_stream stream;
Bytef buffer[BUFFERSIZE];
};
// Create GZIP compressed file stream
FXGZFileStream::FXGZFileStream(const FXObject* cont):FXFileStream(cont),gz(nullptr),ac(0){
}
// Create and open GZIP compressed file stream
FXGZFileStream::FXGZFileStream(const FXString& filename,FXStreamDirection save_or_load,FXuval size):gz(nullptr),ac(0){
open(filename,save_or_load,size);
}
// Save to a file
FXuval FXGZFileStream::writeBuffer(FXuval){
FXival m,n; int zerror;
if(dir!=FXStreamSave){fxerror("FXGZFileStream::writeBuffer: wrong stream direction.\n");}
FXASSERT(begptr<=rdptr);
FXASSERT(rdptr<=wrptr);
FXASSERT(wrptr<=endptr);
while(rdptr<wrptr || ac==Z_FINISH || ac==Z_SYNC_FLUSH){
gz->stream.next_in=(Bytef*)rdptr;
gz->stream.avail_in=wrptr-rdptr;
gz->stream.next_out=gz->buffer;
gz->stream.avail_out=BUFFERSIZE;
zerror=deflate(&gz->stream,ac);
if(zerror<Z_OK) break; // Error occurred
m=gz->stream.next_out-gz->buffer;
n=file.writeBlock(gz->buffer,m);
if(n<m) break; // Failed to write data
rdptr=(FXuchar*)gz->stream.next_in;
if(zerror==Z_STREAM_END) break; // Flushed or finished all data
}
if(rdptr<wrptr){memmove(begptr,rdptr,wrptr-rdptr);}
wrptr=begptr+(wrptr-rdptr);
rdptr=begptr;
return endptr-wrptr;
}
// Load from file
FXuval FXGZFileStream::readBuffer(FXuval){
FXival n; int zerror;
if(dir!=FXStreamLoad){fxerror("FXGZFileStream::readBuffer: wrong stream direction.\n");}
FXASSERT(begptr<=rdptr);
FXASSERT(rdptr<=wrptr);
FXASSERT(wrptr<=endptr);
if(rdptr<wrptr){memmove(begptr,rdptr,wrptr-rdptr);}
wrptr=begptr+(wrptr-rdptr);
rdptr=begptr;
while(wrptr<endptr){
if(gz->stream.avail_in<=0){ // Read more input
n=file.readBlock(gz->buffer,BUFFERSIZE);
if(n<=0) break;
gz->stream.next_in=gz->buffer;
gz->stream.avail_in=n;
}
gz->stream.next_out=(Bytef*)wrptr;
gz->stream.avail_out=endptr-wrptr;
zerror=inflate(&gz->stream,Z_NO_FLUSH);
if(zerror<Z_OK) break; // Error occurred
wrptr=(FXuchar*)gz->stream.next_out;
if(zerror==Z_STREAM_END) break;
}
return wrptr-rdptr;
}
// Try open file stream
FXbool FXGZFileStream::open(const FXString& filename,FXStreamDirection save_or_load,FXuval size){
if(FXFileStream::open(filename,save_or_load,size)){
if(callocElms(gz,1)){
int zerror;
gz->stream.next_in=nullptr;
gz->stream.avail_in=0;
gz->stream.next_out=nullptr;
gz->stream.avail_out=0;
ac=Z_NO_FLUSH;
if(save_or_load==FXStreamLoad){
zerror=inflateInit(&gz->stream);
if(zerror==Z_OK) return true;
code=FXStreamNoRead;
}
else{
zerror=deflateInit(&gz->stream,Z_DEFAULT_COMPRESSION);
if(zerror==Z_OK) return true;
code=FXStreamNoWrite;
}
freeElms(gz);
}
FXFileStream::close();
}
return false;
}
// Flush buffer
FXbool FXGZFileStream::flush(){
FXbool result;
int action=ac;
if(ac!=Z_FINISH) ac=Z_SYNC_FLUSH;
result=FXStream::flush();
ac=action;
return result;
}
// Close file stream
FXbool FXGZFileStream::close(){
if(dir){
if(dir==FXStreamLoad){
FXFileStream::close();
inflateEnd(&gz->stream);
}
else{
ac=Z_FINISH;
FXFileStream::close();
deflateEnd(&gz->stream);
}
freeElms(gz);
return true;
}
return false;
}
// Destructor
FXGZFileStream::~FXGZFileStream(){
close();
}
}
#endif
|