Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ZipOut.h « Zip « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e08c306e34ed8a2513a62a38758dff4de6854226 (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
47
48
49
50
51
// ZipOut.h

#ifndef __ZIP_OUT_H
#define __ZIP_OUT_H

#include "Common/MyCom.h"

#include "../../IStream.h"

#include "ZipItem.h"

namespace NArchive {
namespace NZip {

class COutArchive
{
  CMyComPtr<IOutStream> m_Stream;

  UInt64 m_BasePosition;
  UInt32 m_LocalFileHeaderSize;
  UInt32 m_ExtraSize;
  bool m_IsZip64;

  void WriteBytes(const void *buffer, UInt32 size);
  void WriteByte(Byte b);
  void WriteUInt16(UInt16 value);
  void WriteUInt32(UInt32 value);
  void WriteUInt64(UInt64 value);

  void WriteExtraHeader(const CItem &item);
  void WriteCentralHeader(const CItem &item);
  void WriteExtra(const CExtraBlock &extra);
public:
  void Create(IOutStream *outStream);
  void MoveBasePosition(UInt64 distanceToMove);
  UInt64 GetCurrentPosition() const { return m_BasePosition; };
  void PrepareWriteCompressedDataZip64(UInt16 fileNameLength, bool isZip64, bool aesEncryption);
  void PrepareWriteCompressedData(UInt16 fileNameLength, UInt64 unPackSize, bool aesEncryption);
  void PrepareWriteCompressedData2(UInt16 fileNameLength, UInt64 unPackSize, UInt64 packSize, bool aesEncryption);
  HRESULT WriteLocalHeader(const CLocalItem &item);

  void WriteCentralDir(const CObjectVector<CItem> &items, const CByteBuffer &comment);

  void CreateStreamForCompressing(IOutStream **outStream);
  void CreateStreamForCopying(ISequentialOutStream **outStream);
  void SeekToPackedDataPosition();
};

}}

#endif