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 #ifndef __io_FilterInputStream__
00038 #define __io_FilterInputStream__
00039
00040 #include <stdnet/system/Object>
00041 #include <stdnet/io/IOException>
00042 #include <stdnet/io/InputStream>
00043 #include <stdnet/config.h>
00044
00045 namespace stdbase {
00046 namespace io {
00047
00055 class FilterInputStream :
00056 public system::Object,
00057 public InputStream
00058 {
00059 protected:
00060 FilterInputStream( InputStreamRef input);
00061
00062 virtual ~FilterInputStream();
00063
00064 public:
00069 virtual int
00070 available() throw (IOException);
00071
00075 virtual void
00076 close() throw (IOException);
00077
00086 virtual void
00087 mark( int readlimit);
00088
00097 virtual void
00098 reset() throw (IOException);
00099
00104 virtual bool
00105 markSupported();
00106
00110 virtual int
00111 read( byte buffer[], int len) throw (IOException);
00112
00119 virtual int
00120 read() throw (IOException);
00121
00127 virtual long
00128 skip( long n ) throw (IOException);
00129
00130 static system::reference<FilterInputStream>
00131 create( InputStreamRef r );
00132
00133 private:
00134 InputStreamRef input_stream;
00135 };
00136
00137 typedef system::reference< FilterInputStream > FilterInputStreamRef;
00138
00139 }
00140 }
00141 #endif // __io_FilterInputStream__
00142