summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/win/CPP/7zip/Compress/Lzx86Converter.h
blob: 9f110c29bc0e68d2cfb59fd7eaebf78fec87960b (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
43
44
45
46
// Lzx86Converter.h

#ifndef __LZX_86_CONVERTER_H
#define __LZX_86_CONVERTER_H

#include "../../Common/MyCom.h"

#include "../IStream.h"

namespace NCompress {
namespace NLzx {

const int kUncompressedBlockSize = 1 << 15;

class Cx86ConvertOutStream:
  public ISequentialOutStream,
  public CMyUnknownImp
{
  CMyComPtr<ISequentialOutStream> m_Stream;
  UInt32 m_ProcessedSize;
  UInt32 m_Pos;
  UInt32 m_TranslationSize;
  bool m_TranslationMode;
  Byte m_Buffer[kUncompressedBlockSize];

  void MakeTranslation();
public:
  void SetStream(ISequentialOutStream *outStream) { m_Stream = outStream; }
  void ReleaseStream() { m_Stream.Release(); }
  void Init(bool translationMode, UInt32 translationSize)
  {
    m_TranslationMode = translationMode;
    m_TranslationSize = translationSize;
    m_ProcessedSize = 0;
    m_Pos = 0;
  }
  HRESULT Flush();

  MY_UNKNOWN_IMP

  STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
};

}}

#endif