34 lines
699 B
C++
34 lines
699 B
C++
#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
|
|
|