mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 12:07:12 -06:00
25 lines
609 B
C++
Executable File
25 lines
609 B
C++
Executable File
// LimitedStreams.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "LimitedStreams.h"
|
|
#include "../../Common/Defs.h"
|
|
|
|
void CLimitedSequentialInStream::Init(ISequentialInStream *stream, UInt64 streamSize)
|
|
{
|
|
_stream = stream;
|
|
_size = streamSize;
|
|
}
|
|
|
|
STDMETHODIMP CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
|
|
{
|
|
UInt32 processedSizeReal;
|
|
UInt32 sizeToRead = UInt32(MyMin(_size, UInt64(size)));
|
|
HRESULT result = _stream->Read(data, sizeToRead, &processedSizeReal);
|
|
_size -= processedSizeReal;
|
|
if(processedSize != NULL)
|
|
*processedSize = processedSizeReal;
|
|
return result;
|
|
}
|
|
|