2001-10-06 14:13:28 +00:00
|
|
|
#include "CSocketOutputStream.h"
|
|
|
|
#include "CLock.h"
|
|
|
|
#include "CMutex.h"
|
|
|
|
#include "CThread.h"
|
|
|
|
#include "IJob.h"
|
|
|
|
#include "XIO.h"
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
//
|
|
|
|
// CSocketOutputStream
|
|
|
|
//
|
|
|
|
|
|
|
|
CSocketOutputStream::CSocketOutputStream(CMutex* mutex, IJob* closeCB) :
|
|
|
|
m_mutex(mutex),
|
|
|
|
m_closeCB(closeCB),
|
|
|
|
m_closed(false)
|
|
|
|
{
|
|
|
|
assert(m_mutex != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
CSocketOutputStream::~CSocketOutputStream()
|
|
|
|
{
|
|
|
|
delete m_closeCB;
|
|
|
|
}
|
|
|
|
|
2001-10-14 16:58:01 +00:00
|
|
|
const void* CSocketOutputStream::peek(UInt32 n)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_buffer.peek(n);
|
|
|
|
}
|
|
|
|
|
2001-10-14 16:58:01 +00:00
|
|
|
void CSocketOutputStream::pop(UInt32 n)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
m_buffer.pop(n);
|
|
|
|
}
|
|
|
|
|
2001-10-14 16:58:01 +00:00
|
|
|
UInt32 CSocketOutputStream::getSize() const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
return m_buffer.getSize();
|
|
|
|
}
|
|
|
|
|
2001-10-14 16:58:01 +00:00
|
|
|
void CSocketOutputStream::close()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
CLock lock(m_mutex);
|
|
|
|
if (m_closed) {
|
|
|
|
throw XIOClosed();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_closed = true;
|
|
|
|
if (m_closeCB) {
|
|
|
|
m_closeCB->run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UInt32 CSocketOutputStream::write(
|
2001-10-14 16:58:01 +00:00
|
|
|
const void* data, UInt32 n)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
CLock lock(m_mutex);
|
|
|
|
if (m_closed) {
|
|
|
|
throw XIOClosed();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_buffer.write(data, n);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2001-10-14 16:58:01 +00:00
|
|
|
void CSocketOutputStream::flush()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// wait until all data is written
|
|
|
|
while (getSizeWithLock() > 0) {
|
|
|
|
CThread::sleep(0.05);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-14 16:58:01 +00:00
|
|
|
UInt32 CSocketOutputStream::getSizeWithLock() const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
CLock lock(m_mutex);
|
|
|
|
return m_buffer.getSize();
|
|
|
|
}
|