khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 1 | package lz4 |
| 2 | |
| 3 | import ( |
| 4 | "encoding/binary" |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 5 | "math/bits" |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 6 | "sync" |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 7 | ) |
| 8 | |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 9 | // blockHash hashes the lower 6 bytes into a value < htSize. |
| 10 | func blockHash(x uint64) uint32 { |
| 11 | const prime6bytes = 227718039650203 |
| 12 | return uint32(((x << (64 - 48)) * prime6bytes) >> (64 - hashLog)) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 13 | } |
| 14 | |
| 15 | // CompressBlockBound returns the maximum size of a given buffer of size n, when not compressible. |
| 16 | func CompressBlockBound(n int) int { |
| 17 | return n + n/255 + 16 |
| 18 | } |
| 19 | |
| 20 | // UncompressBlock uncompresses the source buffer into the destination one, |
| 21 | // and returns the uncompressed size. |
| 22 | // |
| 23 | // The destination buffer must be sized appropriately. |
| 24 | // |
| 25 | // An error is returned if the source data is invalid or the destination buffer is too small. |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 26 | func UncompressBlock(src, dst []byte) (int, error) { |
| 27 | if len(src) == 0 { |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 28 | return 0, nil |
| 29 | } |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 30 | if di := decodeBlock(dst, src); di >= 0 { |
| 31 | return di, nil |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 32 | } |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 33 | return 0, ErrInvalidSourceShortBuffer |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | // CompressBlock compresses the source buffer into the destination one. |
| 37 | // This is the fast version of LZ4 compression and also the default one. |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 38 | // |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 39 | // The argument hashTable is scratch space for a hash table used by the |
| 40 | // compressor. If provided, it should have length at least 1<<16. If it is |
| 41 | // shorter (or nil), CompressBlock allocates its own hash table. |
| 42 | // |
| 43 | // The size of the compressed data is returned. |
| 44 | // |
| 45 | // If the destination buffer size is lower than CompressBlockBound and |
| 46 | // the compressed size is 0 and no error, then the data is incompressible. |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 47 | // |
| 48 | // An error is returned if the destination buffer is too small. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 49 | func CompressBlock(src, dst []byte, hashTable []int) (_ int, err error) { |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 50 | defer recoverBlock(&err) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 51 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 52 | // Return 0, nil only if the destination buffer size is < CompressBlockBound. |
| 53 | isNotCompressible := len(dst) < CompressBlockBound(len(src)) |
| 54 | |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 55 | // adaptSkipLog sets how quickly the compressor begins skipping blocks when data is incompressible. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 56 | // This significantly speeds up incompressible data and usually has very small impact on compression. |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 57 | // bytes to skip = 1 + (bytes since last match >> adaptSkipLog) |
| 58 | const adaptSkipLog = 7 |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 59 | if len(hashTable) < htSize { |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 60 | htIface := htPool.Get() |
| 61 | defer htPool.Put(htIface) |
| 62 | hashTable = (*(htIface).(*[htSize]int))[:] |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 63 | } |
| 64 | // Prove to the compiler the table has at least htSize elements. |
| 65 | // The compiler can see that "uint32() >> hashShift" cannot be out of bounds. |
| 66 | hashTable = hashTable[:htSize] |
| 67 | |
| 68 | // si: Current position of the search. |
| 69 | // anchor: Position of the current literals. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 70 | var si, di, anchor int |
| 71 | sn := len(src) - mfLimit |
| 72 | if sn <= 0 { |
| 73 | goto lastLiterals |
| 74 | } |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 75 | |
| 76 | // Fast scan strategy: the hash table only stores the last 4 bytes sequences. |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 77 | for si < sn { |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 78 | // Hash the next 6 bytes (sequence)... |
| 79 | match := binary.LittleEndian.Uint64(src[si:]) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 80 | h := blockHash(match) |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 81 | h2 := blockHash(match >> 8) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 82 | |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 83 | // We check a match at s, s+1 and s+2 and pick the first one we get. |
| 84 | // Checking 3 only requires us to load the source one. |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 85 | ref := hashTable[h] |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 86 | ref2 := hashTable[h2] |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 87 | hashTable[h] = si |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 88 | hashTable[h2] = si + 1 |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 89 | offset := si - ref |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 90 | |
| 91 | // If offset <= 0 we got an old entry in the hash table. |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 92 | if offset <= 0 || offset >= winSize || // Out of window. |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 93 | uint32(match) != binary.LittleEndian.Uint32(src[ref:]) { // Hash collision on different matches. |
| 94 | // No match. Start calculating another hash. |
| 95 | // The processor can usually do this out-of-order. |
| 96 | h = blockHash(match >> 16) |
| 97 | ref = hashTable[h] |
| 98 | |
| 99 | // Check the second match at si+1 |
| 100 | si += 1 |
| 101 | offset = si - ref2 |
| 102 | |
| 103 | if offset <= 0 || offset >= winSize || |
| 104 | uint32(match>>8) != binary.LittleEndian.Uint32(src[ref2:]) { |
| 105 | // No match. Check the third match at si+2 |
| 106 | si += 1 |
| 107 | offset = si - ref |
| 108 | hashTable[h] = si |
| 109 | |
| 110 | if offset <= 0 || offset >= winSize || |
| 111 | uint32(match>>16) != binary.LittleEndian.Uint32(src[ref:]) { |
| 112 | // Skip one extra byte (at si+3) before we check 3 matches again. |
| 113 | si += 2 + (si-anchor)>>adaptSkipLog |
| 114 | continue |
| 115 | } |
| 116 | } |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | // Match found. |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 120 | lLen := si - anchor // Literal length. |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 121 | // We already matched 4 bytes. |
| 122 | mLen := 4 |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 123 | |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 124 | // Extend backwards if we can, reducing literals. |
| 125 | tOff := si - offset - 1 |
| 126 | for lLen > 0 && tOff >= 0 && src[si-1] == src[tOff] { |
| 127 | si-- |
| 128 | tOff-- |
| 129 | lLen-- |
| 130 | mLen++ |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 131 | } |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 132 | |
| 133 | // Add the match length, so we continue search at the end. |
| 134 | // Use mLen to store the offset base. |
| 135 | si, mLen = si+mLen, si+minMatch |
| 136 | |
| 137 | // Find the longest match by looking by batches of 8 bytes. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 138 | for si+8 < sn { |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 139 | x := binary.LittleEndian.Uint64(src[si:]) ^ binary.LittleEndian.Uint64(src[si-offset:]) |
| 140 | if x == 0 { |
| 141 | si += 8 |
| 142 | } else { |
| 143 | // Stop is first non-zero byte. |
| 144 | si += bits.TrailingZeros64(x) >> 3 |
| 145 | break |
| 146 | } |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | mLen = si - mLen |
| 150 | if mLen < 0xF { |
| 151 | dst[di] = byte(mLen) |
| 152 | } else { |
| 153 | dst[di] = 0xF |
| 154 | } |
| 155 | |
| 156 | // Encode literals length. |
| 157 | if lLen < 0xF { |
| 158 | dst[di] |= byte(lLen << 4) |
| 159 | } else { |
| 160 | dst[di] |= 0xF0 |
| 161 | di++ |
| 162 | l := lLen - 0xF |
| 163 | for ; l >= 0xFF; l -= 0xFF { |
| 164 | dst[di] = 0xFF |
| 165 | di++ |
| 166 | } |
| 167 | dst[di] = byte(l) |
| 168 | } |
| 169 | di++ |
| 170 | |
| 171 | // Literals. |
Stephane Barbarie | 260a563 | 2019-02-26 16:12:49 -0500 | [diff] [blame] | 172 | copy(dst[di:di+lLen], src[anchor:anchor+lLen]) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 173 | di += lLen + 2 |
| 174 | anchor = si |
| 175 | |
| 176 | // Encode offset. |
| 177 | _ = dst[di] // Bound check elimination. |
| 178 | dst[di-2], dst[di-1] = byte(offset), byte(offset>>8) |
| 179 | |
| 180 | // Encode match length part 2. |
| 181 | if mLen >= 0xF { |
| 182 | for mLen -= 0xF; mLen >= 0xFF; mLen -= 0xFF { |
| 183 | dst[di] = 0xFF |
| 184 | di++ |
| 185 | } |
| 186 | dst[di] = byte(mLen) |
| 187 | di++ |
| 188 | } |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 189 | // Check if we can load next values. |
| 190 | if si >= sn { |
| 191 | break |
| 192 | } |
| 193 | // Hash match end-2 |
| 194 | h = blockHash(binary.LittleEndian.Uint64(src[si-2:])) |
| 195 | hashTable[h] = si - 2 |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 196 | } |
| 197 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 198 | lastLiterals: |
| 199 | if isNotCompressible && anchor == 0 { |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 200 | // Incompressible. |
| 201 | return 0, nil |
| 202 | } |
| 203 | |
| 204 | // Last literals. |
| 205 | lLen := len(src) - anchor |
| 206 | if lLen < 0xF { |
| 207 | dst[di] = byte(lLen << 4) |
| 208 | } else { |
| 209 | dst[di] = 0xF0 |
| 210 | di++ |
| 211 | for lLen -= 0xF; lLen >= 0xFF; lLen -= 0xFF { |
| 212 | dst[di] = 0xFF |
| 213 | di++ |
| 214 | } |
| 215 | dst[di] = byte(lLen) |
| 216 | } |
| 217 | di++ |
| 218 | |
| 219 | // Write the last literals. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 220 | if isNotCompressible && di >= anchor { |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 221 | // Incompressible. |
| 222 | return 0, nil |
| 223 | } |
Stephane Barbarie | 260a563 | 2019-02-26 16:12:49 -0500 | [diff] [blame] | 224 | di += copy(dst[di:di+len(src)-anchor], src[anchor:]) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 225 | return di, nil |
| 226 | } |
| 227 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 228 | // Pool of hash tables for CompressBlock. |
| 229 | var htPool = sync.Pool{ |
| 230 | New: func() interface{} { |
| 231 | return new([htSize]int) |
| 232 | }, |
| 233 | } |
| 234 | |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 235 | // blockHash hashes 4 bytes into a value < winSize. |
| 236 | func blockHashHC(x uint32) uint32 { |
| 237 | const hasher uint32 = 2654435761 // Knuth multiplicative hash. |
| 238 | return x * hasher >> (32 - winSizeLog) |
| 239 | } |
| 240 | |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 241 | // CompressBlockHC compresses the source buffer src into the destination dst |
| 242 | // with max search depth (use 0 or negative value for no max). |
| 243 | // |
| 244 | // CompressBlockHC compression ratio is better than CompressBlock but it is also slower. |
| 245 | // |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 246 | // The size of the compressed data is returned. |
| 247 | // |
| 248 | // If the destination buffer size is lower than CompressBlockBound and |
| 249 | // the compressed size is 0 and no error, then the data is incompressible. |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 250 | // |
| 251 | // An error is returned if the destination buffer is too small. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 252 | func CompressBlockHC(src, dst []byte, depth int) (_ int, err error) { |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 253 | defer recoverBlock(&err) |
| 254 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 255 | // Return 0, nil only if the destination buffer size is < CompressBlockBound. |
| 256 | isNotCompressible := len(dst) < CompressBlockBound(len(src)) |
| 257 | |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 258 | // adaptSkipLog sets how quickly the compressor begins skipping blocks when data is incompressible. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 259 | // This significantly speeds up incompressible data and usually has very small impact on compression. |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 260 | // bytes to skip = 1 + (bytes since last match >> adaptSkipLog) |
| 261 | const adaptSkipLog = 7 |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 262 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 263 | var si, di, anchor int |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 264 | |
| 265 | // hashTable: stores the last position found for a given hash |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 266 | // chainTable: stores previous positions for a given hash |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 267 | var hashTable, chainTable [winSize]int |
| 268 | |
| 269 | if depth <= 0 { |
| 270 | depth = winSize |
| 271 | } |
| 272 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 273 | sn := len(src) - mfLimit |
| 274 | if sn <= 0 { |
| 275 | goto lastLiterals |
| 276 | } |
| 277 | |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 278 | for si < sn { |
| 279 | // Hash the next 4 bytes (sequence). |
| 280 | match := binary.LittleEndian.Uint32(src[si:]) |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 281 | h := blockHashHC(match) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 282 | |
| 283 | // Follow the chain until out of window and give the longest match. |
| 284 | mLen := 0 |
| 285 | offset := 0 |
| 286 | for next, try := hashTable[h], depth; try > 0 && next > 0 && si-next < winSize; next = chainTable[next&winMask] { |
| 287 | // The first (mLen==0) or next byte (mLen>=minMatch) at current match length |
| 288 | // must match to improve on the match length. |
| 289 | if src[next+mLen] != src[si+mLen] { |
| 290 | continue |
| 291 | } |
| 292 | ml := 0 |
| 293 | // Compare the current position with a previous with the same hash. |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 294 | for ml < sn-si { |
| 295 | x := binary.LittleEndian.Uint64(src[next+ml:]) ^ binary.LittleEndian.Uint64(src[si+ml:]) |
| 296 | if x == 0 { |
| 297 | ml += 8 |
| 298 | } else { |
| 299 | // Stop is first non-zero byte. |
| 300 | ml += bits.TrailingZeros64(x) >> 3 |
| 301 | break |
| 302 | } |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 303 | } |
| 304 | if ml < minMatch || ml <= mLen { |
| 305 | // Match too small (<minMath) or smaller than the current match. |
| 306 | continue |
| 307 | } |
| 308 | // Found a longer match, keep its position and length. |
| 309 | mLen = ml |
| 310 | offset = si - next |
| 311 | // Try another previous position with the same hash. |
| 312 | try-- |
| 313 | } |
| 314 | chainTable[si&winMask] = hashTable[h] |
| 315 | hashTable[h] = si |
| 316 | |
| 317 | // No match found. |
| 318 | if mLen == 0 { |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 319 | si += 1 + (si-anchor)>>adaptSkipLog |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 320 | continue |
| 321 | } |
| 322 | |
| 323 | // Match found. |
| 324 | // Update hash/chain tables with overlapping bytes: |
| 325 | // si already hashed, add everything from si+1 up to the match length. |
| 326 | winStart := si + 1 |
| 327 | if ws := si + mLen - winSize; ws > winStart { |
| 328 | winStart = ws |
| 329 | } |
| 330 | for si, ml := winStart, si+mLen; si < ml; { |
| 331 | match >>= 8 |
| 332 | match |= uint32(src[si+3]) << 24 |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 333 | h := blockHashHC(match) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 334 | chainTable[si&winMask] = hashTable[h] |
| 335 | hashTable[h] = si |
| 336 | si++ |
| 337 | } |
| 338 | |
| 339 | lLen := si - anchor |
| 340 | si += mLen |
| 341 | mLen -= minMatch // Match length does not include minMatch. |
| 342 | |
| 343 | if mLen < 0xF { |
| 344 | dst[di] = byte(mLen) |
| 345 | } else { |
| 346 | dst[di] = 0xF |
| 347 | } |
| 348 | |
| 349 | // Encode literals length. |
| 350 | if lLen < 0xF { |
| 351 | dst[di] |= byte(lLen << 4) |
| 352 | } else { |
| 353 | dst[di] |= 0xF0 |
| 354 | di++ |
| 355 | l := lLen - 0xF |
| 356 | for ; l >= 0xFF; l -= 0xFF { |
| 357 | dst[di] = 0xFF |
| 358 | di++ |
| 359 | } |
| 360 | dst[di] = byte(l) |
| 361 | } |
| 362 | di++ |
| 363 | |
| 364 | // Literals. |
Stephane Barbarie | 260a563 | 2019-02-26 16:12:49 -0500 | [diff] [blame] | 365 | copy(dst[di:di+lLen], src[anchor:anchor+lLen]) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 366 | di += lLen |
| 367 | anchor = si |
| 368 | |
| 369 | // Encode offset. |
| 370 | di += 2 |
| 371 | dst[di-2], dst[di-1] = byte(offset), byte(offset>>8) |
| 372 | |
| 373 | // Encode match length part 2. |
| 374 | if mLen >= 0xF { |
| 375 | for mLen -= 0xF; mLen >= 0xFF; mLen -= 0xFF { |
| 376 | dst[di] = 0xFF |
| 377 | di++ |
| 378 | } |
| 379 | dst[di] = byte(mLen) |
| 380 | di++ |
| 381 | } |
| 382 | } |
| 383 | |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 384 | if isNotCompressible && anchor == 0 { |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 385 | // Incompressible. |
| 386 | return 0, nil |
| 387 | } |
| 388 | |
| 389 | // Last literals. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 390 | lastLiterals: |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 391 | lLen := len(src) - anchor |
| 392 | if lLen < 0xF { |
| 393 | dst[di] = byte(lLen << 4) |
| 394 | } else { |
| 395 | dst[di] = 0xF0 |
| 396 | di++ |
| 397 | lLen -= 0xF |
| 398 | for ; lLen >= 0xFF; lLen -= 0xFF { |
| 399 | dst[di] = 0xFF |
| 400 | di++ |
| 401 | } |
| 402 | dst[di] = byte(lLen) |
| 403 | } |
| 404 | di++ |
| 405 | |
| 406 | // Write the last literals. |
khenaidoo | d948f77 | 2021-08-11 17:49:24 -0400 | [diff] [blame^] | 407 | if isNotCompressible && di >= anchor { |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 408 | // Incompressible. |
| 409 | return 0, nil |
| 410 | } |
Stephane Barbarie | 260a563 | 2019-02-26 16:12:49 -0500 | [diff] [blame] | 411 | di += copy(dst[di:di+len(src)-anchor], src[anchor:]) |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 412 | return di, nil |
| 413 | } |