2022-06-11 23:01:27 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
2022-12-17 20:14:19 +00:00
|
|
|
File: AuIOBufferedProcessor.cpp
|
2022-06-11 23:01:27 +00:00
|
|
|
Date: 2022-6-6
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#include <Source/RuntimeInternal.hpp>
|
|
|
|
#include <Aurora/IO/IOExperimental.hpp>
|
2022-12-17 20:14:19 +00:00
|
|
|
#include "AuIOBufferedProcessor.hpp"
|
2022-06-11 23:01:27 +00:00
|
|
|
|
|
|
|
namespace Aurora::IO
|
|
|
|
{
|
|
|
|
struct IOBufferedProcessor : IIOBufferedProcessor
|
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
AuSPtr<IStreamReader> pSource;
|
|
|
|
AuSPtr<IStreamWriter> pDrain;
|
|
|
|
AuSPtr<IIOPipeInterceptor> pProcessor;
|
|
|
|
AuUInt32 uBufferSize {};
|
2022-06-11 23:01:27 +00:00
|
|
|
AuByteBuffer buffer;
|
|
|
|
|
|
|
|
AU_DEFINE_FOR_VA(IOBufferedProcessor,
|
|
|
|
(AU_DEFINE_CTOR_VA, // initializer-list-like ctor (extending a struct or adding a ctor will break initializer lists)
|
|
|
|
AU_DEFINE_THIS_MOVE_CTOR_VA, // add move `Object(Object &&)`
|
|
|
|
AU_DEFINE_EQUALS_VA, // add equals operator
|
|
|
|
AU_DEFINE_MOVE_VA, // add move assignment operator
|
|
|
|
AU_DEFINE_COPY_VA), // add copy assignment operator
|
2022-08-29 15:46:46 +00:00
|
|
|
(pSource, pDrain, pProcessor, uBufferSize));
|
2022-06-11 23:01:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
AuUInt32 TryProcessBuffered() override;
|
|
|
|
AuUInt32 GetRawBytesBuffered() override;
|
|
|
|
AuUInt32 GetRawBytesLimit() override;
|
|
|
|
|
|
|
|
AuUInt32 TryPump();
|
|
|
|
};
|
|
|
|
|
|
|
|
AuUInt32 IOBufferedProcessor::TryProcessBuffered()
|
|
|
|
{
|
|
|
|
if (this->buffer.IsEmpty())
|
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
this->buffer.Allocate(this->uBufferSize);
|
2022-06-11 23:01:27 +00:00
|
|
|
this->buffer.flagCircular = true; // !!!
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->buffer.IsEmpty())
|
|
|
|
{
|
|
|
|
return TryPump();
|
|
|
|
}
|
|
|
|
|
|
|
|
AuUInt canBuffer = this->buffer.RemainingWrite();
|
|
|
|
canBuffer = AuMin(canBuffer, AuUInt((this->buffer.length + this->buffer.base) - this->buffer.writePtr));
|
|
|
|
|
|
|
|
AuUInt read {};
|
|
|
|
try
|
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
if (this->pSource->Read(AuMemoryViewStreamWrite(AuMemoryViewWrite(this->buffer.writePtr, canBuffer), read)) !=
|
2022-06-11 23:01:27 +00:00
|
|
|
AuIO::EStreamError::eErrorNone)
|
|
|
|
{
|
|
|
|
return TryPump();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
SysPushErrorCatch();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->buffer.writePtr += read;
|
|
|
|
|
|
|
|
if (this->buffer.writePtr == this->buffer.base + this->buffer.length)
|
|
|
|
{
|
|
|
|
this->buffer.writePtr = this->buffer.base;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TryPump();
|
|
|
|
}
|
|
|
|
|
|
|
|
AuUInt32 IOBufferedProcessor::TryPump()
|
|
|
|
{
|
|
|
|
AuUInt bytesProcessedTotal {};
|
|
|
|
AuUInt bytesProcessed {};
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
if (this->buffer.flagCircular && this->buffer.readPtr == this->buffer.base + this->buffer.length)
|
|
|
|
{
|
|
|
|
this->buffer.readPtr = this->buffer.base;
|
|
|
|
}
|
|
|
|
|
2022-06-11 23:01:27 +00:00
|
|
|
AuUInt canRead = this->buffer.RemainingBytes();
|
|
|
|
canRead = AuMin<AuUInt>(canRead, (this->buffer.length + this->buffer.base) - this->buffer.readPtr);
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
if (!this->pProcessor->OnDataAvailable(AuMemoryViewStreamRead(AuMemoryViewRead(this->buffer.readPtr, canRead), bytesProcessed), this->pDrain))
|
2022-06-11 23:01:27 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
SysPushErrorCatch();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->buffer.readPtr += bytesProcessed;
|
|
|
|
bytesProcessedTotal += bytesProcessed;
|
|
|
|
|
2022-08-29 15:46:46 +00:00
|
|
|
if (this->buffer.flagCircular && this->buffer.readPtr == this->buffer.base + this->buffer.length)
|
2022-06-11 23:01:27 +00:00
|
|
|
{
|
|
|
|
this->buffer.readPtr = this->buffer.base;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (AuExchange(bytesProcessed, 0));
|
|
|
|
|
|
|
|
return bytesProcessedTotal;
|
|
|
|
}
|
|
|
|
|
|
|
|
AuUInt32 IOBufferedProcessor::GetRawBytesBuffered()
|
|
|
|
{
|
|
|
|
return this->buffer.RemainingBytes();
|
|
|
|
}
|
|
|
|
|
|
|
|
AuUInt32 IOBufferedProcessor::GetRawBytesLimit()
|
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
return this->uBufferSize;
|
2022-06-11 23:01:27 +00:00
|
|
|
}
|
|
|
|
|
2022-08-29 15:46:46 +00:00
|
|
|
AUKN_SYM AuSPtr<IIOBufferedProcessor> NewBufferedProcessor(const AuSPtr<IStreamReader> &pSource,
|
|
|
|
const AuSPtr<IIOPipeInterceptor> &pProcessor,
|
|
|
|
const AuSPtr<IStreamWriter> &pDrain,
|
|
|
|
AuUInt32 uBufferSize)
|
2022-06-11 23:01:27 +00:00
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
return AuMakeShared<IOBufferedProcessor>(pSource, pDrain, pProcessor, uBufferSize);
|
2022-06-11 23:01:27 +00:00
|
|
|
}
|
|
|
|
}
|