summaryrefslogtreecommitdiffstats
path: root/hostTools/lzma/compress/OutByte.h
blob: dc9ff0ad20ea1d6a7663a13cbbaeaf1e473b3f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef __STREAM_OUTBYTE_H
#define __STREAM_OUTBYTE_H

#include "Portable.h"
#include "IInOutStreams.h"

namespace NStream {

class COutByte
{
  BYTE *m_Buffer;
  UINT32 m_Pos;
  UINT32 m_BufferSize;
  ISequentialOutStream* m_Stream;
  UINT64 m_ProcessedSize;

  void WriteBlock();
public:
  COutByte(UINT32 aBufferSize = (1 << 20));
  ~COutByte();

  void Init(ISequentialOutStream *aStream);
  HRESULT Flush();

  void WriteByte(BYTE aByte)
  {
    m_Buffer[m_Pos++] = aByte;
    if(m_Pos >= m_BufferSize)
      WriteBlock();
  }
  void WriteBytes(const void *aBytes, UINT32 aSize)
  {
    for (UINT32 i = 0; i < aSize; i++)
      WriteByte(((const BYTE *)aBytes)[i]);
  }

  UINT64 GetProcessedSize() const { return m_ProcessedSize + m_Pos; }
};

}

#endif