00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #if !defined(GZIPINSTREAM_OL_GUARD)
00044 #define GZIPINSTREAM_OL_GUARD
00045
00046 #include <ObjectiveLib/ZlibInStream.h>
00047
00048 @class OLMap;
00049
00063 @interface OLGzipInStream : OLZlibInStream
00064 {
00065 @protected
00069 char* fileName;
00070
00074 char* comment;
00075
00079 OLMap* extraFields;
00080
00084 uint32_t modTime;
00085
00089 uint32_t crc;
00090
00094 BOOL endOfStream;
00095 }
00096
00097 + (id) streamWithInStream: (OLInStream*)underStream;
00098
00102
00119 - (id) initWithInStream: (OLInStream*)underStream bufferSize: (unsigned)size readZlibHeader: (BOOL)zlibHeader;
00120 #if !defined(OL_NO_OPENSTEP)
00121 - (void) dealloc;
00122 #endif
00123
00124
00131 - (const char*) comment;
00132
00145 - (const uint8_t*) extraField: (const char*)identifier count: (unsigned*)countOut;
00146
00147 #if defined(OL_NO_OPENSTEP)
00148 - (void) freeStreamResources;
00149 #endif
00150
00158 - (uint32_t) modificationTime;
00159
00166 - (const char*) originalFileName;
00167 - (unsigned) readBytes: (uint8_t*)dest count: (unsigned)max;
00168
00169 @end
00170
00171 #endif