Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
1 7z ANSI-C Decoder 4.23
2 ----------------------
4 7z ANSI-C Decoder 4.23 Copyright (C) 1999-2005 Igor Pavlov
6 7z ANSI-C provides 7z/LZMA decoding.
7 7z ANSI-C version is simplified version ported from C++ code.
9 LZMA is default and general compression method of 7z format
10 in 7-Zip compression program (www.7-zip.org). LZMA provides high
11 compression ratio and very fast decompression.
14 LICENSE
15 -------
17 Read lzma.txt for information about license.
20 Files
21 ---------------------
23 7zAlloc.* - Allocate and Free
24 7zBuffer.* - Buffer structure
25 7zCrc.* - CRC32 code
26 7zDecode.* - Low level memory->memory decoding
27 7zExtract.* - High level stream->memory decoding
28 7zHeader.* - .7z format constants
29 7zIn.* - .7z archive opening
30 7zItem.* - .7z structures
31 7zMain.c - Test application
32 7zMethodID.* - MethodID structure
33 7zTypes.h - Base types and constants
36 How To Use
37 ----------
39 You must download 7-Zip program from www.7-zip.org.
41 You can create .7z archive with 7z.exe or 7za.exe:
43 7za.exe a archive.7z *.htm -r -mx -m0fb=255 -mf=off
45 If you have big number of files in archive, and you need fast extracting,
46 you can use partly-solid archives:
48 7za.exe a archive.7z *.htm -ms=512K -r -mx -m0fb=255 -m0d=512K -mf=off
50 In that example 7-Zip will use 512KB solid blocks. So it needs to decompress only
51 512KB for extracting one file from such archive.
54 Limitations of current version of 7z ANSI-C Decoder
55 ---------------------------------------------------
57 - It reads only "FileName", "Size", and "CRC" information for each file in archive.
58 - It supports only LZMA and Copy (no compression) methods.
59 - It converts original UTF-16 Unicode file names to UTF-8 Unicode file names.
61 These limitations will be fixed in future versions.
64 Using 7z ANSI-C Decoder Test application:
65 -----------------------------------------
67 Usage: 7zDec <command> <archive_name>
69 <Command>:
70 e: Extract files from archive
71 l: List contents of archive
72 t: Test integrity of archive
74 Example:
76 7zDec l archive.7z
78 lists contents of archive.7z
80 7zDec e archive.7z
82 extracts files from archive.7z to current folder.
85 How to use .7z Decoder
86 ----------------------
88 .7z Decoder can be compiled in one of two modes:
90 1) Default mode. In that mode 7z Decoder will read full compressed
91 block to RAM before decompressing.
93 2) Mode with defined _LZMA_IN_CB. In that mode 7z Decoder can read
94 compressed block by parts. And you can specify desired buffer size.
95 So memory requirements can be reduced. But decompressing speed will
96 be 5-10% lower and code size is slightly larger.
99 Memory allocation
100 ~~~~~~~~~~~~~~~~~
102 7z Decoder uses two memory pools:
103 1) Temporary pool
104 2) Main pool
105 Such scheme can allow you to avoid fragmentation of allocated blocks.
107 Steps for using 7z decoder
108 --------------------------
110 Use code at 7zMain.c as example.
112 1) Declare variables:
113 inStream /* implements ISzInStream interface */
114 CArchiveDatabaseEx db; /* 7z archive database structure */
115 ISzAlloc allocImp; /* memory functions for main pool */
116 ISzAlloc allocTempImp; /* memory functions for temporary pool */
118 2) call InitCrcTable(); function to initialize CRC structures.
120 3) call SzArDbExInit(&db); function to initialize db structures.
122 4) call SzArchiveOpen(inStream, &db, &allocMain, &allocTemp) to open archive
124 This function opens archive "inStream" and reads headers to "db".
125 All items in "db" will be allocated with "allocMain" functions.
126 SzArchiveOpen function allocates and frees temporary structures by "allocTemp" functions.
128 5) List items or Extract items
130 Listing code:
131 ~~~~~~~~~~~~~
132 {
133 UInt32 i;
134 for (i = 0; i < db.Database.NumFiles; i++)
135 {
136 CFileItem *f = db.Database.Files + i;
137 printf("%10d %s\n", (int)f->Size, f->Name);
138 }
139 }
141 Extracting code:
142 ~~~~~~~~~~~~~~~~
144 SZ_RESULT SzExtract(
145 ISzInStream *inStream,
146 CArchiveDatabaseEx *db,
147 UInt32 fileIndex, /* index of file */
148 UInt32 *blockIndex, /* index of solid block */
149 Byte **outBuffer, /* pointer to pointer to output buffer (allocated with allocMain) */
150 size_t *outBufferSize, /* buffer size for output buffer */
151 size_t *offset, /* offset of stream for required file in *outBuffer */
152 size_t *outSizeProcessed, /* size of file in *outBuffer */
153 ISzAlloc *allocMain,
154 ISzAlloc *allocTemp);
156 If you need to decompress more than one file, you can send these values from previous call:
157 blockIndex,
158 outBuffer,
159 outBufferSize,
160 You can consider "outBuffer" as cache of solid block. If your archive is solid,
161 it will increase decompression speed.
163 After decompressing you must free "outBuffer":
164 allocImp.Free(outBuffer);
166 6) call SzArDbExFree(&db, allocImp.Free) to free allocated items in "db".
171 Memory requirements for .7z decoding
172 ------------------------------------
174 Memory usage for Archive opening:
175 - Temporary pool:
176 - Memory for compressed .7z headers (if _LZMA_IN_CB is not defined)
177 - Memory for uncompressed .7z headers
178 - some other temporary blocks
179 - Main pool:
180 - Memory for database:
181 Estimated size of one file structures in solid archive:
182 - Size (4 or 8 Bytes)
183 - CRC32 (4 bytes)
184 - Some file information (4 bytes)
185 - File Name (variable length) + pointer + allocation structures
187 Memory usage for archive Decompressing:
188 - Temporary pool:
189 - Memory for compressed solid block (if _LZMA_IN_CB is not defined)
190 - Memory for LZMA decompressing structures
191 - Main pool:
192 - Memory for decompressed solid block
195 If _LZMA_IN_CB is defined, 7z Decoder will not allocate memory for
196 compressed blocks. Instead of this, you must allocate buffer with desired
197 size before calling 7z Decoder. Use 7zMain.c as example.
201 EXIT codes
202 -----------
204 7z Decoder functions can return one of the following codes:
206 #define SZ_OK (0)
207 #define SZE_DATA_ERROR (1)
208 #define SZE_OUTOFMEMORY (2)
209 #define SZE_CRC_ERROR (3)
211 #define SZE_NOTIMPL (4)
212 #define SZE_FAIL (5)
214 #define SZE_ARCHIVE_ERROR (6)
218 LZMA Defines
219 ------------
221 _LZMA_IN_CB - Use special callback mode for input stream to reduce memory requirements
223 _SZ_FILE_SIZE_64 - define it if you need support for files larger than 4 GB
224 _SZ_NO_INT_64 - define it if your compiler doesn't support long long int
226 _LZMA_PROB32 - it can increase LZMA decompressing speed on some 32-bit CPUs.
228 _SZ_ONE_DIRECTORY - define it if you want to locate all source files to one directory
229 _SZ_ALLOC_DEBUG - define it if you want to debug alloc/free operations to stderr.
232 ---
234 http://www.7-zip.org
235 http://www.7-zip.org/support.html