barrier/io/CInputStreamFilter.h

39 lines
886 B
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef CINPUTSTREAMFILTER_H
#define CINPUTSTREAMFILTER_H
#include "IInputStream.h"
//! A filtering input stream
/*!
This class wraps an input stream. Subclasses provide indirect access
to the stream, typically performing some filtering.
*/
2001-10-06 14:13:28 +00:00
class CInputStreamFilter : public IInputStream {
2002-04-29 14:40:01 +00:00
public:
/*!
Create a wrapper around \c stream. Iff \c adoptStream is true then
this object takes ownership of the stream and will delete it in the
d'tor.
*/
CInputStreamFilter(IInputStream* stream, bool adoptStream = true);
2001-10-06 14:13:28 +00:00
~CInputStreamFilter();
// IInputStream overrides
virtual void close() = 0;
virtual UInt32 read(void*, UInt32 n, double timeout) = 0;
virtual UInt32 getSize() const = 0;
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
protected:
//! Get the stream
/*!
Returns the stream passed to the c'tor.
*/
IInputStream* getStream() const;
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
private:
2001-10-06 14:13:28 +00:00
IInputStream* m_stream;
bool m_adopted;
};
#endif