svn_txdelta_window_t
object describes how to reconstruct a contiguous section of the target string (the "target view") using a specified contiguous region of the source string (the "source view").
More...
#include <svn_delta.h>
Data Fields | |
svn_filesize_t | sview_offset |
The offset of the source view for this window. | |
apr_size_t | sview_len |
The length of the source view for this window. | |
apr_size_t | tview_len |
The length of the target view for this window, i.e. More... | |
int | num_ops |
The number of instructions in this window. | |
int | src_ops |
The number of svn_txdelta_source instructions in this window. More... | |
const svn_txdelta_op_t * | ops |
The instructions for this window. | |
const svn_string_t * | new_data |
New data, for use by any `svn_txdelta_new' instructions. |
svn_txdelta_window_t
object describes how to reconstruct a contiguous section of the target string (the "target view") using a specified contiguous region of the source string (the "source view").
It contains a series of instructions which assemble the new target string text by pulling together substrings from:
Definition at line 148 of file svn_delta.h.
|
The number of svn_txdelta_source instructions in this window. If this number is 0, we don't need to read the source in order to reconstruct the target view. Definition at line 168 of file svn_delta.h. |
|
The length of the target view for this window, i.e. the number of bytes which will be reconstructed by the instruction stream. Definition at line 159 of file svn_delta.h. |