barrier/io/CBufferedOutputStream.h

47 lines
986 B
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef CBUFFEREDOUTPUTSTREAM_H
#define CBUFFEREDOUTPUTSTREAM_H
#include "CStreamBuffer.h"
#include "IOutputStream.h"
class CMutex;
class IJob;
class CBufferedOutputStream : public IOutputStream {
2002-04-29 14:40:01 +00:00
public:
2001-10-06 14:13:28 +00:00
CBufferedOutputStream(CMutex*, IJob* adoptedCloseCB);
~CBufferedOutputStream();
// the caller is expected to lock the mutex before calling
// methods unless otherwise noted.
// manipulators
// peek() returns a buffer of n bytes (which must be <= getSize()).
// pop() discards the next n bytes.
const void* peek(UInt32 n);
void pop(UInt32 n);
2001-10-06 14:13:28 +00:00
// accessors
// return the number of bytes in the buffer
UInt32 getSize() const;
2001-10-06 14:13:28 +00:00
// IOutputStream overrides
// these all lock the mutex for their duration
virtual void close();
virtual UInt32 write(const void*, UInt32 count);
virtual void flush();
2001-10-06 14:13:28 +00:00
2002-04-29 14:40:01 +00:00
private:
UInt32 getSizeWithLock() 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
CMutex* m_mutex;
IJob* m_closeCB;
CStreamBuffer m_buffer;
bool m_closed;
};
#endif