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 #ifndef __ZStream_Count__
00026 #define __ZStream_Count__ 1
00027
00028 #include "zconfig.h"
00029
00030 #include "ZStream.h"
00031
00032
00033 #pragma mark -
00034 #pragma mark * ZStreamR_Count
00035
00037
00038 class ZStreamR_Count : public ZStreamR
00039 {
00040 public:
00042 ZStreamR_Count(const ZStreamR& iStreamSource);
00043 ZStreamR_Count(uint64& oCount, const ZStreamR& iStreamSource);
00044
00045 ~ZStreamR_Count();
00046
00047
00048 virtual void Imp_Read(void* iDest, size_t iCount, size_t* oCountRead);
00049 virtual size_t Imp_CountReadable();
00050
00051 virtual void Imp_CopyToDispatch(const ZStreamW& iStreamW, uint64 iCount,
00052 uint64* oCountRead, uint64* oCountWritten);
00053
00054 virtual void Imp_CopyTo(const ZStreamW& iStreamW, uint64 iCount,
00055 uint64* oCountRead, uint64* oCountWritten);
00056
00057 virtual void Imp_Skip(uint64 iCount, uint64* oCountSkipped);
00058
00059
00060
00062 uint64 GetCount();
00063
00065 void ZeroCount();
00066
00067 protected:
00068 const ZStreamR& fStreamSource;
00069 uint64 fCount;
00070 uint64* fCountPtr;
00071 };
00072
00073
00074
00075
00076 #pragma mark -
00077 #pragma mark * ZStreamW_Count
00078
00080
00081 class ZStreamW_Count : public ZStreamW
00082 {
00083 public:
00085 ZStreamW_Count(const ZStreamW& iStreamSink);
00086
00087 ZStreamW_Count(uint64& oCount, const ZStreamW& iStreamSink);
00088
00091 ZStreamW_Count();
00092 ZStreamW_Count(uint64& oCount);
00093
00094 ~ZStreamW_Count();
00095
00096
00097 virtual void Imp_Write(const void* iSource, size_t iCount, size_t* oCountWritten);
00098
00099 virtual void Imp_CopyFromDispatch(const ZStreamR& iStreamR, uint64 iCount,
00100 uint64* oCountRead, uint64* oCountWritten);
00101
00102 virtual void Imp_CopyFrom(const ZStreamR& iStreamR, uint64 iCount,
00103 uint64* oCountRead, uint64* oCountWritten);
00104
00105 virtual void Imp_Flush();
00106
00107
00108
00110 uint64 GetCount();
00111
00113 void ZeroCount();
00114
00115 protected:
00116 const ZStreamW* fStreamSink;
00117 uint64 fCount;
00118 uint64* fCountPtr;
00119 };
00120
00121
00122
00123 #endif // __ZStream_Count__