|
MediaWiki REL1_39
|
Diff-based history compression Requires xdiff and zlib. More...


Public Member Functions | |
| __construct () | |
| __sleep () | |
| __wakeup () | |
| addItem ( $text) | |
| getItem ( $key) | |
| getText () | |
| isHappy () | |
| Helper function for compression jobs Returns true until the object is "full" and ready to be committed. | |
| setText ( $text) | |
| xdiffAdler32 ( $s) | |
| Compute a binary "Adler-32" checksum as defined by LibXDiff, i.e. | |
Public Attributes | |
| string null | $mCompressed |
| Compressed storage. | |
| string | $mDefaultKey |
| The key for getText() | |
| array | $mDiffMap |
| The diff map, see above. | |
| array null | $mDiffs |
| Array of diffs. | |
| bool | $mFrozen = false |
| True if the object is locked against further writes. | |
| string[] | $mItems = [] |
| Uncompressed item cache. | |
| int | $mMaxCount = 100 |
| The maximum number of text items before the object becomes sad. | |
| int | $mMaxSize = 10000000 |
| The maximum uncompressed size before the object becomes sad Should be less than max_allowed_packet. | |
| int | $mSize = 0 |
| Total uncompressed size. | |
Diff-based history compression Requires xdiff and zlib.
Definition at line 27 of file DiffHistoryBlob.php.
| DiffHistoryBlob::__construct | ( | ) |
Definition at line 71 of file DiffHistoryBlob.php.
| DiffHistoryBlob::__sleep | ( | ) |
Definition at line 292 of file DiffHistoryBlob.php.
References $mDefaultKey, $mDiffs, and serialize().
| DiffHistoryBlob::__wakeup | ( | ) |
Definition at line 319 of file DiffHistoryBlob.php.
References unserialize().
| DiffHistoryBlob::addItem | ( | $text | ) |
| MWException |
| string | $text |
Implements HistoryBlob.
Definition at line 82 of file DiffHistoryBlob.php.
Referenced by setText().
| DiffHistoryBlob::getItem | ( | $key | ) |
| string | $key |
Implements HistoryBlob.
Definition at line 97 of file DiffHistoryBlob.php.
Referenced by getText().
| DiffHistoryBlob::getText | ( | ) |
Implements HistoryBlob.
Definition at line 111 of file DiffHistoryBlob.php.
References getItem().
| DiffHistoryBlob::isHappy | ( | ) |
Helper function for compression jobs Returns true until the object is "full" and ready to be committed.
Definition at line 359 of file DiffHistoryBlob.php.
References $mMaxCount.
| DiffHistoryBlob::setText | ( | $text | ) |
| string | $text |
Implements HistoryBlob.
Definition at line 104 of file DiffHistoryBlob.php.
References addItem().
| DiffHistoryBlob::xdiffAdler32 | ( | $s | ) |
Compute a binary "Adler-32" checksum as defined by LibXDiff, i.e.
with the bytes backwards and initialised with 0 instead of 1. See T36428.
| string | $s |
Definition at line 263 of file DiffHistoryBlob.php.
References $s.
| string null DiffHistoryBlob::$mCompressed |
Compressed storage.
Definition at line 52 of file DiffHistoryBlob.php.
| string DiffHistoryBlob::$mDefaultKey |
| array DiffHistoryBlob::$mDiffMap |
The diff map, see above.
Definition at line 45 of file DiffHistoryBlob.php.
| array null DiffHistoryBlob::$mDiffs |
Array of diffs.
If a diff D from A to B is notated D = B - A, and Z is an empty string:
{ item[map[i]] - item[map[i-1]] where i > 0
diff[i] = { { item[map[i]] - Z where i = 0
Definition at line 42 of file DiffHistoryBlob.php.
Referenced by __sleep().
| bool DiffHistoryBlob::$mFrozen = false |
True if the object is locked against further writes.
Definition at line 55 of file DiffHistoryBlob.php.
| string [] DiffHistoryBlob::$mItems = [] |
Uncompressed item cache.
Definition at line 29 of file DiffHistoryBlob.php.
| int DiffHistoryBlob::$mMaxCount = 100 |
The maximum number of text items before the object becomes sad.
Definition at line 64 of file DiffHistoryBlob.php.
Referenced by isHappy().
| int DiffHistoryBlob::$mMaxSize = 10000000 |
The maximum uncompressed size before the object becomes sad Should be less than max_allowed_packet.
Definition at line 61 of file DiffHistoryBlob.php.
| int DiffHistoryBlob::$mSize = 0 |
Total uncompressed size.
Definition at line 32 of file DiffHistoryBlob.php.