forked from kichik/nsis
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathclzma.h
105 lines (83 loc) · 2.36 KB
/
clzma.h
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* clzma.h
*
* This file is a part of NSIS.
*
* Copyright (C) 1999-2023 Nullsoft and Contributors
*
* Licensed under the zlib/libpng license (the "License");
* you may not use this file except in compliance with the License.
*
* Licence details can be found in the file COPYING.
*
* This software is provided 'as-is', without any express or implied
* warranty.
*
* Unicode support by Jim Park -- 08/24/2007
*/
#ifndef __CLZMA_H__
#define __CLZMA_H__
#include "Platform.h"
#ifndef _WIN32
# include <pthread.h>
#endif
#include "compressor.h"
#include "7zip/7zip/IStream.h"
#include "7zip/7zip/Compress/LZMA/LZMAEncoder.h"
#include "7zip/Common/MyCom.h"
#include "7zip/Common/Defs.h"
#define LZMA_BAD_CALL -1
#define LZMA_INIT_ERROR -2
#define LZMA_THREAD_ERROR -3
#define LZMA_IO_ERROR -4
#define LZMA_MEM_ERROR -5
class CLZMA:
public ICompressor,
public ISequentialInStream,
public ISequentialOutStream,
public CMyUnknownImp
{
private:
NCompress::NLZMA::CEncoder *_encoder;
#ifdef _WIN32
HANDLE hCompressionThread;
#else
pthread_t hCompressionThread;
#endif
HANDLE hNeedIOEvent;
HANDLE hIOReadyEvent;
BYTE *next_in; /* next input byte */
UINT avail_in; /* number of bytes available at next_in */
BYTE *next_out; /* next output byte should be put there */
UINT avail_out; /* remaining free space at next_out */
int res;
BOOL finish;
BOOL compressor_finished;
int ConvertError(HRESULT result);
void GetMoreIO();
int CompressReal();
#ifdef _WIN32
static DWORD WINAPI lzmaCompressThread(LPVOID lpParameter);
#else
static void* lzmaCompressThread(void *lpParameter);
#endif
public:
MY_UNKNOWN_IMP
CLZMA();
virtual ~CLZMA();
virtual int Init(int level, unsigned int dicSize);
virtual int End();
virtual int Compress(bool flush);
STDMETHOD(Read)(void *data, UINT32 size, UINT32 *processedSize);
STDMETHOD(ReadPart)(void *data, UINT32 size, UINT32 *processedSize);
STDMETHOD(Write)(const void *data, UINT32 size, UINT32 *processedSize);
STDMETHOD(WritePart)(const void *data, UINT32 size, UINT32 *processedSize);
virtual void SetNextIn(char *in, unsigned int size);
virtual void SetNextOut(char *out, unsigned int size);
virtual char *GetNextOut();
virtual unsigned int GetAvailIn();
virtual unsigned int GetAvailOut();
virtual const TCHAR *GetName();
virtual const TCHAR* GetErrStr(int err);
};
#endif