FXBZStream.h
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 FXBZSTREAM_H
00026 #define FXBZSTREAM_H
00027
00028 #ifndef FXSTREAM_H
00029 #include "FXStream.h"
00030 #endif
00031
00032
00033 namespace FX {
00034
00035
00036
00037 class FXAPI FXBZFileStream : public FXStream {
00038 private:
00039 void *file;
00040 void *bzfile;
00041 protected:
00042 virtual unsigned long writeBuffer(unsigned long count);
00043 virtual unsigned long readBuffer(unsigned long count);
00044 public:
00045
00046
00047 FXBZFileStream(const FXObject* cont=NULL);
00048
00049
00050 FXbool open(const FXString& filename,FXStreamDirection save_or_load,unsigned long size=8192);
00051
00052
00053 virtual FXbool close();
00054
00055
00056 FXlong position() const { return FXStream::position(); }
00057
00058
00059 virtual FXbool position(FXlong,FXWhence){ return FALSE; }
00060
00061
00062 FXBZFileStream& operator<<(const FXuchar& v){ FXStream::operator<<(v); return *this; }
00063 FXBZFileStream& operator<<(const FXchar& v){ FXStream::operator<<(v); return *this; }
00064 FXBZFileStream& operator<<(const FXushort& v){ FXStream::operator<<(v); return *this; }
00065 FXBZFileStream& operator<<(const FXshort& v){ FXStream::operator<<(v); return *this; }
00066 FXBZFileStream& operator<<(const FXuint& v){ FXStream::operator<<(v); return *this; }
00067 FXBZFileStream& operator<<(const FXint& v){ FXStream::operator<<(v); return *this; }
00068 FXBZFileStream& operator<<(const FXfloat& v){ FXStream::operator<<(v); return *this; }
00069 FXBZFileStream& operator<<(const FXdouble& v){ FXStream::operator<<(v); return *this; }
00070 FXBZFileStream& operator<<(const FXlong& v){ FXStream::operator<<(v); return *this; }
00071 FXBZFileStream& operator<<(const FXulong& v){ FXStream::operator<<(v); return *this; }
00072
00073
00074 FXBZFileStream& save(const FXuchar* p,unsigned long n){ FXStream::save(p,n); return *this; }
00075 FXBZFileStream& save(const FXchar* p,unsigned long n){ FXStream::save(p,n); return *this; }
00076 FXBZFileStream& save(const FXushort* p,unsigned long n){ FXStream::save(p,n); return *this; }
00077 FXBZFileStream& save(const FXshort* p,unsigned long n){ FXStream::save(p,n); return *this; }
00078 FXBZFileStream& save(const FXuint* p,unsigned long n){ FXStream::save(p,n); return *this; }
00079 FXBZFileStream& save(const FXint* p,unsigned long n){ FXStream::save(p,n); return *this; }
00080 FXBZFileStream& save(const FXfloat* p,unsigned long n){ FXStream::save(p,n); return *this; }
00081 FXBZFileStream& save(const FXdouble* p,unsigned long n){ FXStream::save(p,n); return *this; }
00082 FXBZFileStream& save(const FXlong* p,unsigned long n){ FXStream::save(p,n); return *this; }
00083 FXBZFileStream& save(const FXulong* p,unsigned long n){ FXStream::save(p,n); return *this; }
00084
00085
00086 FXBZFileStream& operator>>(FXuchar& v){ FXStream::operator>>(v); return *this; }
00087 FXBZFileStream& operator>>(FXchar& v){ FXStream::operator>>(v); return *this; }
00088 FXBZFileStream& operator>>(FXushort& v){ FXStream::operator>>(v); return *this; }
00089 FXBZFileStream& operator>>(FXshort& v){ FXStream::operator>>(v); return *this; }
00090 FXBZFileStream& operator>>(FXuint& v){ FXStream::operator>>(v); return *this; }
00091 FXBZFileStream& operator>>(FXint& v){ FXStream::operator>>(v); return *this; }
00092 FXBZFileStream& operator>>(FXfloat& v){ FXStream::operator>>(v); return *this; }
00093 FXBZFileStream& operator>>(FXdouble& v){ FXStream::operator>>(v); return *this; }
00094 FXBZFileStream& operator>>(FXlong& v){ FXStream::operator>>(v); return *this; }
00095 FXBZFileStream& operator>>(FXulong& v){ FXStream::operator>>(v); return *this; }
00096
00097
00098 FXBZFileStream& load(FXuchar* p,unsigned long n){ FXStream::load(p,n); return *this; }
00099 FXBZFileStream& load(FXchar* p,unsigned long n){ FXStream::load(p,n); return *this; }
00100 FXBZFileStream& load(FXushort* p,unsigned long n){ FXStream::load(p,n); return *this; }
00101 FXBZFileStream& load(FXshort* p,unsigned long n){ FXStream::load(p,n); return *this; }
00102 FXBZFileStream& load(FXuint* p,unsigned long n){ FXStream::load(p,n); return *this; }
00103 FXBZFileStream& load(FXint* p,unsigned long n){ FXStream::load(p,n); return *this; }
00104 FXBZFileStream& load(FXfloat* p,unsigned long n){ FXStream::load(p,n); return *this; }
00105 FXBZFileStream& load(FXdouble* p,unsigned long n){ FXStream::load(p,n); return *this; }
00106 FXBZFileStream& load(FXlong* p,unsigned long n){ FXStream::load(p,n); return *this; }
00107 FXBZFileStream& load(FXulong* p,unsigned long n){ FXStream::load(p,n); return *this; }
00108
00109
00110 FXBZFileStream& saveObject(const FXObject* v){ FXStream::saveObject(v); return *this; }
00111
00112
00113 FXBZFileStream& loadObject(FXObject*& v){ FXStream::loadObject(v); return *this; }
00114
00115
00116 virtual ~FXBZFileStream();
00117 };
00118
00119
00120 }
00121
00122 #endif
00123 #endif