2013-05-08 20:17:07 +02:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Duplicati.Library.Main
|
|
|
|
|
{
|
|
|
|
|
public class Blockprocessor : IDisposable
|
|
|
|
|
{
|
|
|
|
|
private Stream m_stream;
|
|
|
|
|
private byte[] m_buffer;
|
|
|
|
|
|
|
|
|
|
public Blockprocessor(Stream stream, byte[] buffer)
|
|
|
|
|
{
|
|
|
|
|
if (stream == null)
|
|
|
|
|
throw new ArgumentNullException("stream");
|
|
|
|
|
|
|
|
|
|
if (buffer == null)
|
|
|
|
|
throw new ArgumentNullException("buffer");
|
|
|
|
|
|
|
|
|
|
m_stream = stream;
|
|
|
|
|
m_buffer = buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Readblock()
|
|
|
|
|
{
|
|
|
|
|
var bytesleft = m_buffer.Length;
|
|
|
|
|
var bytesread = 0;
|
|
|
|
|
var read = 1;
|
|
|
|
|
|
|
|
|
|
while (bytesleft > 0 && read > 0)
|
|
|
|
|
{
|
|
|
|
|
read = m_stream.Read(m_buffer, bytesread, bytesleft);
|
|
|
|
|
bytesleft -= read;
|
|
|
|
|
bytesread += read;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return bytesread;
|
|
|
|
|
}
|
2013-08-20 22:16:30 +02:00
|
|
|
|
|
|
|
|
public long Length { get { return m_stream.Length; } }
|
2013-05-08 20:17:07 +02:00
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
if (m_stream != null)
|
|
|
|
|
m_stream.Dispose();
|
|
|
|
|
m_stream = null;
|
|
|
|
|
m_buffer = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|