00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifdef HAVE_BZ2LIB_H
00025 #ifndef FXBZFILESTREAM_H
00026 #define FXBZFILESTREAM_H
00027
00028 #ifndef FXFILESTREAM_H
00029 #include "FXFileStream.h"
00030 #endif
00031
00032
00033 namespace FX {
00034
00035
00036 struct BZBlock;
00037
00038
00039
00040 class FXAPI FXBZFileStream : public FXFileStream {
00041 private:
00042 BZBlock *bz;
00043 int ac;
00044 protected:
00045 virtual FXuval writeBuffer(FXuval count);
00046 virtual FXuval readBuffer(FXuval count);
00047 public:
00048
00049
00050 FXBZFileStream(const FXObject* cont=NULL);
00051
00052
00053 bool open(const FXString& filename,FXStreamDirection save_or_load,FXuval size=8192);
00054
00055
00056 virtual bool close();
00057
00058
00059 FXlong position() const { return FXStream::position(); }
00060
00061
00062 virtual bool position(FXlong,FXWhence){ return FALSE; }
00063
00064
00065 FXBZFileStream& operator<<(const FXuchar& v){ FXStream::operator<<(v); return *this; }
00066 FXBZFileStream& operator<<(const FXchar& v){ FXStream::operator<<(v); return *this; }
00067 FXBZFileStream& operator<<(const FXushort& v){ FXStream::operator<<(v); return *this; }
00068 FXBZFileStream& operator<<(const FXshort& v){ FXStream::operator<<(v); return *this; }
00069 FXBZFileStream& operator<<(const FXuint& v){ FXStream::operator<<(v); return *this; }
00070 FXBZFileStream& operator<<(const FXint& v){ FXStream::operator<<(v); return *this; }
00071 FXBZFileStream& operator<<(const FXfloat& v){ FXStream::operator<<(v); return *this; }
00072 FXBZFileStream& operator<<(const FXdouble& v){ FXStream::operator<<(v); return *this; }
00073 FXBZFileStream& operator<<(const FXlong& v){ FXStream::operator<<(v); return *this; }
00074 FXBZFileStream& operator<<(const FXulong& v){ FXStream::operator<<(v); return *this; }
00075
00076
00077 FXBZFileStream& save(const FXuchar* p,FXuval n){ FXStream::save(p,n); return *this; }
00078 FXBZFileStream& save(const FXchar* p,FXuval n){ FXStream::save(p,n); return *this; }
00079 FXBZFileStream& save(const FXushort* p,FXuval n){ FXStream::save(p,n); return *this; }
00080 FXBZFileStream& save(const FXshort* p,FXuval n){ FXStream::save(p,n); return *this; }
00081 FXBZFileStream& save(const FXuint* p,FXuval n){ FXStream::save(p,n); return *this; }
00082 FXBZFileStream& save(const FXint* p,FXuval n){ FXStream::save(p,n); return *this; }
00083 FXBZFileStream& save(const FXfloat* p,FXuval n){ FXStream::save(p,n); return *this; }
00084 FXBZFileStream& save(const FXdouble* p,FXuval n){ FXStream::save(p,n); return *this; }
00085 FXBZFileStream& save(const FXlong* p,FXuval n){ FXStream::save(p,n); return *this; }
00086 FXBZFileStream& save(const FXulong* p,FXuval n){ FXStream::save(p,n); return *this; }
00087
00088
00089 FXBZFileStream& operator>>(FXuchar& v){ FXStream::operator>>(v); return *this; }
00090 FXBZFileStream& operator>>(FXchar& v){ FXStream::operator>>(v); return *this; }
00091 FXBZFileStream& operator>>(FXushort& v){ FXStream::operator>>(v); return *this; }
00092 FXBZFileStream& operator>>(FXshort& v){ FXStream::operator>>(v); return *this; }
00093 FXBZFileStream& operator>>(FXuint& v){ FXStream::operator>>(v); return *this; }
00094 FXBZFileStream& operator>>(FXint& v){ FXStream::operator>>(v); return *this; }
00095 FXBZFileStream& operator>>(FXfloat& v){ FXStream::operator>>(v); return *this; }
00096 FXBZFileStream& operator>>(FXdouble& v){ FXStream::operator>>(v); return *this; }
00097 FXBZFileStream& operator>>(FXlong& v){ FXStream::operator>>(v); return *this; }
00098 FXBZFileStream& operator>>(FXulong& v){ FXStream::operator>>(v); return *this; }
00099
00100
00101 FXBZFileStream& load(FXuchar* p,FXuval n){ FXStream::load(p,n); return *this; }
00102 FXBZFileStream& load(FXchar* p,FXuval n){ FXStream::load(p,n); return *this; }
00103 FXBZFileStream& load(FXushort* p,FXuval n){ FXStream::load(p,n); return *this; }
00104 FXBZFileStream& load(FXshort* p,FXuval n){ FXStream::load(p,n); return *this; }
00105 FXBZFileStream& load(FXuint* p,FXuval n){ FXStream::load(p,n); return *this; }
00106 FXBZFileStream& load(FXint* p,FXuval n){ FXStream::load(p,n); return *this; }
00107 FXBZFileStream& load(FXfloat* p,FXuval n){ FXStream::load(p,n); return *this; }
00108 FXBZFileStream& load(FXdouble* p,FXuval n){ FXStream::load(p,n); return *this; }
00109 FXBZFileStream& load(FXlong* p,FXuval n){ FXStream::load(p,n); return *this; }
00110 FXBZFileStream& load(FXulong* p,FXuval n){ FXStream::load(p,n); return *this; }
00111
00112
00113 FXBZFileStream& saveObject(const FXObject* v){ FXStream::saveObject(v); return *this; }
00114
00115
00116 FXBZFileStream& loadObject(FXObject*& v){ FXStream::loadObject(v); return *this; }
00117
00118
00119 virtual ~FXBZFileStream();
00120 };
00121
00122
00123 }
00124
00125 #endif
00126 #endif