barrier/synergy/CInputPacketStream.h

34 lines
699 B
C
Raw Normal View History

2001-10-06 14:13:28 +00:00
#ifndef CINPUTPACKETSTREAM_H
#define CINPUTPACKETSTREAM_H
#include "CInputStreamFilter.h"
#include "CBufferedInputStream.h"
#include "CMutex.h"
class CInputPacketStream : public CInputStreamFilter {
public:
CInputPacketStream(IInputStream*, bool adoptStream = true);
~CInputPacketStream();
// manipulators
// accessors
// IInputStream overrides
virtual void close() throw(XIO);
virtual UInt32 read(void*, UInt32 maxCount) throw(XIO);
virtual UInt32 getSize() const throw();
private:
UInt32 getSizeNoLock() const throw();
bool hasFullMessage() const throw();
private:
CMutex m_mutex;
mutable UInt32 m_size;
mutable CBufferedInputStream m_buffer;
};
#endif