Rizin
unix-like reverse engineering framework and cli tools
|
Filter ID mapping to filter-specific functions. More...
#include "filter_decoder.h"
#include "filter_common.h"
#include "lzma_decoder.h"
#include "lzma2_decoder.h"
#include "simple_decoder.h"
#include "delta_decoder.h"
Go to the source code of this file.
Classes | |
struct | lzma_filter_decoder |
Functions | |
static const lzma_filter_decoder * | decoder_find (lzma_vli id) |
LZMA_API (lzma_bool) | |
lzma_ret | lzma_raw_decoder_init (lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter *options) |
LZMA_API (lzma_ret) | |
LZMA_API (uint64_t) | |
Calculate approximate memory usage of easy encoder. More... | |
Variables | |
static const lzma_filter_decoder | decoders [] |
Filter ID mapping to filter-specific functions.
Definition in file filter_decoder.c.
|
static |
Definition at line 122 of file filter_decoder.c.
References ARRAY_SIZE, decoders, i, and NULL.
Referenced by LZMA_API(), and lzma_raw_decoder_init().
LZMA_API | ( | lzma_bool | ) |
Definition at line 132 of file filter_decoder.c.
References decoder_find(), and NULL.
LZMA_API | ( | lzma_ret | ) |
Definition at line 148 of file filter_decoder.c.
References lzma_stream::internal, LZMA_FINISH, lzma_next_strm_init, LZMA_OK, lzma_raw_decoder_init(), LZMA_RUN, options, strm, and lzma_internal_s::supported_actions.
LZMA_API | ( | uint64_t | ) |
Calculate approximate memory usage of easy encoder.
Get the total amount of physical memory (RAM) in bytes.
Calculate approximate memory usage of multithreaded .xz encoder.
Calculate approximate decoder memory usage of a preset.
This function is a wrapper for lzma_raw_encoder_memusage().
preset | Compression preset (level and possible flags) |
This function is a wrapper for lzma_raw_decoder_memusage().
preset | Compression preset (level and possible flags) |
Since doing the encoding in threaded mode doesn't affect the memory requirements of single-threaded decompressor, you can use lzma_easy_decoder_memusage(options->preset) or lzma_raw_decoder_memusage(options->filters) to calculate the decompressor memory requirements.
options | Compression options |
Calculate approximate memory usage of easy encoder.
Get the uncompressed size of the file.
Get the total size of the file.
Get the total size of the Blocks.
Get the total size of the Stream.
Get the size of the Index field as bytes.
Get the number of Blocks.
Get the number of Streams.
Calculate the memory usage of an existing lzma_index.
On disk, the size of the Index field depends on both the number of Records stored and how big values the Records store (due to variable-length integer encoding). When the Index is kept in lzma_index structure, the memory usage depends only on the number of Records/Blocks stored in the Index(es), and in case of concatenated lzma_indexes, the number of Streams. The size in RAM is almost always significantly bigger than in the encoded form on disk.
This function calculates an approximate amount of memory needed hold the given number of Streams and Blocks in lzma_index structure. This value may vary between CPU architectures and also between liblzma versions if the internal implementation is modified.
This is a shorthand for lzma_index_memusage(lzma_index_stream_count(i), lzma_index_block_count(i)).
This returns the total number of Blocks in lzma_index. To get number of Blocks in individual Streams, use lzma_index_iter.
This is needed to verify the Backward Size field in the Stream Footer.
If multiple lzma_indexes have been combined, this works as if the Blocks were in a single Stream. This is useful if you are going to combine Blocks from multiple Streams into a single new Stream.
This doesn't include the Stream Header, Stream Footer, Stream Padding, or Index fields.
When no lzma_indexes have been combined with lzma_index_cat() and there is no Stream Padding, this function is identical to lzma_index_stream_size(). If multiple lzma_indexes have been combined, this includes also the headers of each separate Stream and the possible Stream Padding fields.
Definition at line 160 of file filter_decoder.c.
References decoder_find(), filters, and lzma_raw_coder_memusage().
lzma_ret lzma_raw_decoder_init | ( | lzma_next_coder * | next, |
const lzma_allocator * | allocator, | ||
const lzma_filter * | options | ||
) |
Definition at line 140 of file filter_decoder.c.
References allocator, decoder_find(), lzma_raw_coder_init(), and options.
Referenced by LZMA_API(), and lzma_block_decoder_init().
|
static |
Definition at line 45 of file filter_decoder.c.
Referenced by decoder_find().