Data Fields

lzma_mf_s Struct Reference

Data Fields

uint8_t * buffer
 Pointer to buffer with data to be compressed.
uint32_t size
uint32_t keep_size_before
uint32_t keep_size_after
uint32_t offset
uint32_t read_pos
uint32_t read_ahead
uint32_t read_limit
uint32_t write_pos
uint32_t pending
uint32_t(* find )(lzma_mf *mf, lzma_match *matches)
void(* skip )(lzma_mf *mf, uint32_t num)
uint32_t * hash
uint32_t * son
uint32_t cyclic_pos
uint32_t cyclic_size
uint32_t hash_mask
uint32_t depth
 Maximum number of loops in the match finder.
uint32_t nice_len
 Maximum length of a match that the match finder will try to find.
uint32_t match_len_max
lzma_action action
uint32_t hash_size_sum
 Number of elements in hash[].
uint32_t sons_count
 Number of elements in son[].

Field Documentation

Pointer to buffer with data to be compressed.

Referenced by fill_window(), mf_ptr(), mf_read(), and move_window().

uint32_t lzma_mf_s::size

Total size of the allocated buffer (that is, including all the extra space)

Referenced by fill_window().

Number of bytes that must be kept available in our input history. That is, once keep_size_before bytes have been processed, buffer[read_pos - keep_size_before] is the oldest byte that must be available for reading.

Referenced by move_window().

Number of bytes that must be kept in buffer after read_pos. That is, read_pos <= write_pos - keep_size_after as long as action is LZMA_RUN; when action != LZMA_RUN, read_pos is allowed to reach write_pos so that the last bytes get encoded too.

Referenced by fill_window().

Match finders store locations of matches using 32-bit integers. To avoid adjusting several megabytes of integers every time the input window is moved with move_window, we only adjust the offset of the buffer. Thus, buffer[value_in_hash_table - offset] is the byte pointed by value_in_hash_table.

Referenced by move_pos(), move_window(), and normalize().

buffer[read_pos] is the next byte to run through the match finder. This is incremented in the match finder once the byte has been processed.

Referenced by fill_window(), mf_avail(), mf_position(), mf_ptr(), mf_read(), mf_unencoded(), move_pending(), move_pos(), move_window(), and normalize().

Number of bytes that have been ran through the match finder, but which haven't been encoded by the LZ-based encoder yet.

Referenced by lzma_mf_find(), mf_position(), mf_read(), mf_skip(), and mf_unencoded().

As long as read_pos is less than read_limit, there is enough input available in buffer for at least one encoding loop.

Because of the stateful API, read_limit may and will get greater than read_pos quite often. This is taken into account when calculating the value for keep_size_after.

Referenced by fill_window(), and move_window().

buffer[write_pos] is the first byte that doesn't contain valid uncompressed data; that is, the next input byte will be copied to buffer[write_pos].

Referenced by fill_window(), mf_avail(), mf_unencoded(), move_pending(), move_pos(), and move_window().

Number of bytes not hashed before read_pos. This is needed to restart the match finder after LZMA_SYNC_FLUSH.

Referenced by fill_window(), and move_pending().

uint32_t(* lzma_mf_s::find)(lzma_mf *mf, lzma_match *matches)

Find matches. Returns the number of distance-length pairs written to the matches array. This is called only via lzma_mf_find().

Referenced by lzma_mf_find().

void(* lzma_mf_s::skip)(lzma_mf *mf, uint32_t num)

Skips num bytes. This is like find() but doesn't make the distance-length pairs available, thus being a little faster. This is called only via mf_skip().

Referenced by fill_window(), and mf_skip().

uint32_t lzma_mf_s::depth

Maximum number of loops in the match finder.

Maximum length of a match that the match finder will try to find.

Referenced by lzma_mf_find().

Maximum length of a match supported by the LZ-based encoder. If the longest match found by the match finder is nice_len, mf_find() tries to expand it up to match_len_max bytes.

Referenced by lzma_mf_find().

When running out of input, binary tree match finders need to know if it is due to flushing or finishing. The action is used also by the LZ-based encoders themselves.

Referenced by fill_window().

Number of elements in hash[].

Referenced by normalize().

Number of elements in son[].

Referenced by normalize().


The documentation for this struct was generated from the following file: