![]() |
Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
|
Go to the source code of this file.
Data Structures | |
struct | lzma_block |
Options for the Block and Block Header encoders and decoders. More... | |
Macros | |
#define | LZMA_BLOCK_HEADER_SIZE_MIN 8 |
#define | LZMA_BLOCK_HEADER_SIZE_MAX 1024 |
#define | lzma_block_header_size_decode(b) |
Decode the Block Header Size field. | |
Functions | |
LZMA_API (lzma_ret) lzma_block_header_size(lzma_block *block) lzma_nothrow lzma_attr_warn_unused_result | |
Calculate Block Header Size. | |
LZMA_API (lzma_vli) lzma_block_unpadded_size(const lzma_block *block) lzma_nothrow lzma_attr_pure | |
Calculate Unpadded Size. | |
LZMA_API (size_t) lzma_block_buffer_bound(size_t uncompressed_size) lzma_nothrow | |
Calculate maximum output size for single-call Block encoding. | |
Variables | |
uint8_t *out lzma_nothrow | lzma_attr_warn_unused_result |
const lzma_allocator * | allocator |
const lzma_allocator const uint8_t * | in |
const lzma_allocator const uint8_t size_t | in_size |
const lzma_allocator const uint8_t size_t uint8_t * | out |
const lzma_allocator const uint8_t size_t uint8_t size_t * | out_pos |
const lzma_allocator const uint8_t size_t * | in_pos |
const lzma_allocator const uint8_t size_t size_t uint8_t size_t size_t out_size | lzma_nothrow |
#define lzma_block_header_size_decode | ( | b | ) |
Decode the Block Header Size field.
To decode Block Header using lzma_block_header_decode(), the size of the Block Header has to be known and stored into lzma_block.header_size. The size can be calculated from the first byte of a Block using this macro. Note that if the first byte is 0x00, it indicates beginning of Index; use this macro only when the byte is not 0x00.
There is no encoding macro because lzma_block_header_size() and lzma_block_header_encode() should be used.
#define LZMA_BLOCK_HEADER_SIZE_MAX 1024 |
#define LZMA_BLOCK_HEADER_SIZE_MIN 8 |
|
extern |
Calculate Block Header Size.
Single-call .xz Block decoder.
Single-call uncompressed .xz Block encoder.
Single-call .xz Block encoder.
Initialize .xz Block decoder.
Initialize .xz Block encoder.
Validate and set Compressed Size according to Unpadded Size.
Decode Block Header.
Encode Block Header.
Calculate the minimum size needed for the Block Header field using the settings specified in the lzma_block structure. Note that it is OK to increase the calculated header_size value as long as it is a multiple of four and doesn't exceed LZMA_BLOCK_HEADER_SIZE_MAX. Increasing header_size just means that lzma_block_header_encode() will add Header Padding.
block | Block options |
The caller must have calculated the size of the Block Header already with lzma_block_header_size(). If a value larger than the one calculated by lzma_block_header_size() is used, the Block Header will be padded to the specified size.
block | Block options to be encoded. | |
[out] | out | Beginning of the output buffer. This must be at least block->header_size bytes. |
block->version should (usually) be set to the highest value supported by the application. If the application sets block->version to a value higher than supported by the current liblzma version, this function will downgrade block->version to the highest value supported by it. Thus one should check the value of block->version after calling this function if block->version was set to a non-zero value and the application doesn't otherwise know that the liblzma version being used is new enough to support the specified block->version.
The size of the Block Header must have already been decoded with lzma_block_header_size_decode() macro and stored to block->header_size.
The integrity check type from Stream Header must have been stored to block->check.
block->filters must have been allocated, but they don't need to be initialized (possible existing filter options are not freed).
[out] | block | Destination for Block options |
allocator | lzma_allocator for custom allocator functions. Set to NULL to use malloc() (and also free() if an error occurs). | |
in | Beginning of the input buffer. This must be at least block->header_size bytes. |
Block Header stores Compressed Size, but Index has Unpadded Size. If the application has already parsed the Index and is now decoding Blocks, it can calculate Compressed Size from Unpadded Size. This function does exactly that with error checking:
block | Block options: block->header_size must already be set with lzma_block_header_size(). |
unpadded_size | Unpadded Size from the Index field in bytes |
Valid actions for lzma_code() are LZMA_RUN, LZMA_SYNC_FLUSH (only if the filter chain supports it), and LZMA_FINISH.
The Block encoder encodes the Block Data, Block Padding, and Check value. It does NOT encode the Block Header which can be encoded with lzma_block_header_encode().
strm | Pointer to lzma_stream that is at least initialized with LZMA_STREAM_INIT. |
block | Block options: block->version, block->check, and block->filters must have been initialized. |
Valid actions for lzma_code() are LZMA_RUN and LZMA_FINISH. Using LZMA_FINISH is not required. It is supported only for convenience.
The Block decoder decodes the Block Data, Block Padding, and Check value. It does NOT decode the Block Header which can be decoded with lzma_block_header_decode().
strm | Pointer to lzma_stream that is at least initialized with LZMA_STREAM_INIT. |
block | Block options |
In contrast to the multi-call encoder initialized with lzma_block_encoder(), this function encodes also the Block Header. This is required to make it possible to write appropriate Block Header also in case the data isn't compressible, and different filter chain has to be used to encode the data in uncompressed form using uncompressed chunks of the LZMA2 filter.
When the data isn't compressible, header_size, compressed_size, and uncompressed_size are set just like when the data was compressible, but it is possible that header_size is too small to hold the filter chain specified in block->filters, because that isn't necessarily the filter chain that was actually used to encode the data. lzma_block_unpadded_size() still works normally, because it doesn't read the filters array.
block | Block options: block->version, block->check, and block->filters must have been initialized. | |
allocator | lzma_allocator for custom allocator functions. Set to NULL to use malloc() and free(). | |
in | Beginning of the input buffer | |
in_size | Size of the input buffer | |
[out] | out | Beginning of the output buffer |
[out] | out_pos | The next byte will be written to out[*out_pos]. *out_pos is updated only if encoding succeeds. |
out_size | Size of the out buffer; the first byte into which no data is written to is out[out_size]. |
This is like lzma_block_buffer_encode() except this doesn't try to compress the data and instead encodes the data using LZMA2 uncompressed chunks. The required output buffer size can be determined with lzma_block_buffer_bound().
Since the data won't be compressed, this function ignores block->filters. This function doesn't take lzma_allocator because this function doesn't allocate any memory from the heap.
block | Block options: block->version, block->check, and block->filters must have been initialized. | |
in | Beginning of the input buffer | |
in_size | Size of the input buffer | |
[out] | out | Beginning of the output buffer |
[out] | out_pos | The next byte will be written to out[*out_pos]. *out_pos is updated only if encoding succeeds. |
out_size | Size of the out buffer; the first byte into which no data is written to is out[out_size]. |
This is single-call equivalent of lzma_block_decoder(), and requires that the caller has already decoded Block Header and checked its memory usage.
block | Block options | |
allocator | lzma_allocator for custom allocator functions. Set to NULL to use malloc() and free(). | |
in | Beginning of the input buffer | |
in_pos | The next byte will be read from in[*in_pos]. *in_pos is updated only if decoding succeeds. | |
in_size | Size of the input buffer; the first byte that won't be read is in[in_size]. | |
[out] | out | Beginning of the output buffer |
[out] | out_pos | The next byte will be written to out[*out_pos]. *out_pos is updated only if encoding succeeds. |
out_size | Size of the out buffer; the first byte into which no data is written to is out[out_size]. |
|
extern |
Calculate Unpadded Size.
Calculate the total encoded size of a Block.
The Index field stores Unpadded Size and Uncompressed Size. The latter can be taken directly from the lzma_block structure after coding a Block, but Unpadded Size needs to be calculated from Block Header Size, Compressed Size, and size of the Check field. This is where this function is needed.
block | Block options: block->header_size must already be set with lzma_block_header_size(). |
This is equivalent to lzma_block_unpadded_size() except that the returned value includes the size of the Block Padding field.
block | Block options: block->header_size must already be set with lzma_block_header_size(). |
Get the size of the Index field as bytes.
Calculate approximate memory requirements for raw encoder.
Calculate Unpadded Size.
Get the memory usage of decoder filter chain.
Calculate CRC64 using the polynomial from the ECMA-182 standard.
This function is used similarly to lzma_crc32(). See its documentation.
Get the size of the Index field as bytes.
Calculate approximate memory requirements for raw encoder.
Calculate Unpadded Size.
Get the memory usage of decoder filter chain.
Calculate CRC64 using the polynomial from the ECMA-182 standard.
This function is used similarly to lzma_crc32().
buf | Pointer to the input buffer |
size | Size of the input buffer |
crc | Previously returned CRC value. This is used to calculate the CRC of a big buffer in smaller chunks. Set to zero when starting a new calculation. |
|
extern |
Calculate maximum output size for single-call Block encoding.
This is equivalent to lzma_stream_buffer_bound() but for .xz Blocks. See the documentation of lzma_stream_buffer_bound().
uncompressed_size | Size of the data to be encoded with the single-call Block encoder. |
Calculate output buffer size for single-call Stream encoder.
This is equivalent to lzma_stream_buffer_bound() but for .xz Blocks. See the documentation of lzma_stream_buffer_bound().
const lzma_allocator* allocator |
const lzma_allocator const uint8_t* in |
const lzma_allocator const uint8_t size_t* in_pos |
const lzma_allocator const uint8_t size_t size_t in_size |
const uint8_t size_t uint8_t size_t size_t out_size lzma_nothrow lzma_attr_warn_unused_result |
const lzma_allocator const uint8_t size_t size_t uint8_t size_t size_t out_size lzma_nothrow |
const lzma_allocator const uint8_t size_t size_t uint8_t* out |
const lzma_allocator const uint8_t size_t size_t uint8_t size_t* out_pos |