This is the original LZ4 for C# full managed lib written by IonKiwi, with some minor changes to add random access support based on the original lz4 dictionaryRandomAccess.c example with the difference that a dictionary is not used and some additional data added to the end of the file.
Compress using the LZ41 format
using IonKiwi.lz4;
var file_in = new FileStream("G:\\test.json", FileMode.Open, FileAccess.Read);
var file_out = new FileStream("G:\\test.json.lz4", FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
Console.WriteLine("Uncompressed Filesize: " + file_in.Length);
var cpBytes = LZ4RawUtility.LZ41_Stream_Compress_HC(file_in, file_out, LZ4FrameBlockSize.Max64KB);
Console.WriteLine("Compressed Filesize: " + cpBytes);
file_in.Dispose();
file_out.Dispose();
Decompress entire file with LZ41 format
using IonKiwi.lz4;
var file_in = new FileStream("G:\\test.json.lz4", FileMode.Open, FileAccess.Read);
var file_out = new FileStream("G:\\test2.json", FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
Console.WriteLine("Compressed Filesize: " + file_in.Length);
var cpBytes = LZ4RawUtility.LZ41_Stream_Decompress(file_in, file_out);
Console.WriteLine("Uncompressed bytes: " + cpBytes);
Console.WriteLine(i);
file_in.Dispose();
file_out.Dispose();
Random Access with LZ41 format
using IonKiwi.lz4;
var file_in = new FileStream("G:\\test.json.lz4", FileMode.Open, FileAccess.Read);
var file_out = new FileStream("G:\\test2.json", FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
Console.WriteLine("Compressed Filesize: " + file_in.Length);
//Get 100 bytes starting at position 2000 of the uncompressed file
var cpBytes = LZ4RawUtility.LZ41_Stream_Decompress(file_in, file_out,null,2000,100);
Console.WriteLine("Uncompressed bytes: " + cpBytes);
Console.WriteLine(i);
file_in.Dispose();
file_out.Dispose();
LZ41 Format
HEADER|BLOCKS|OFFSET INDEX|NUMBER OF OFFSETS|ORIGINAL FILESIZE|BLOCK SIZE
(4) | (N) | (N) | 4 | 4 | 4
The Header is LZ41(0x31345A4C)
LZ4 has been written by Yann Collet and the original sources can be found on https://github.com/lz4/lz4
This project contains the translated C# sources
non-streaming
Non streaming version, works with managed byte arrays, uses the LZ4 Framing Format (v1.6.2).
The compressed data that this stream creates is readable by the lz4 command line tools.
The Compress function has additional parameters to control the result.
- blockMode: Linked or Independent blocks
- blockSize: 64KB / 256KB / 1MB / 4MB
- checksumMode: None / Content / Block
- maxFrameSize: optional maximum frame size
- highCompression: use lz4hc mode
Example:
// compress data
byte[] dataToCompress = ...
byte[] compressedData = LZ4Utility.Compress(dataToCompress);
// decompress data
byte[] decompressedData = LZ4Utility.Decompress(compressedData);
streaming
Streaming version, uses the LZ4 Framing Format (v1.6.2).
The compressed data that this stream creates is readable by the lz4 command line tools.
Example:
// compress data [with content checksum]
using (LZ4Stream stream = LZ4Stream.CreateCompressor(innerStream, LZ4StreamMode.Write, LZ4FrameBlockMode.Linked, LZ4FrameBlockSize.Max64KB, LZ4FrameChecksumMode.Content)) {
// write uncompressed data to the lz4 stream
// the stream will compress the data and write it to the innerStream
stream.Write(buffer, 0, buffer.Length);
}
// compress data [with block and content checksum, start a new frame after 100 data blocks]
// note: the lz4 command line tools do NOT support block checksums currently
using (LZ4Stream stream = LZ4Stream.CreateCompressor(innerStream, LZ4StreamMode.Write, LZ4FrameBlockMode.Linked, LZ4FrameBlockSize.Max64KB, LZ4FrameChecksumMode.Block | LZ4FrameChecksumMode.Content, 100)) {
// write uncompressed data to the lz4 stream
// the stream will compress the data and write it to the innerStream
stream.Write(buffer, 0, buffer.Length);
}
// decompress data (in read mode)
using (LZ4Stream stream = LZ4Stream.CreateDecompressor(innerStream, LZ4StreamMode.Read)) {
// the lz4 stream will read the compressed data from the innerStream
// and return the uncompressed data in 'buffer'
int bytesRead = stream.Read(buffer, 0, buffer.Length);
}
// decompress data (in write mode)
using (LZ4Stream stream = LZ4Stream.CreateDecompressor(innerStream, LZ4StreamMode.Write)) {
// the lz4 stream will decompress the data from 'buffer'
// and write the uncompressed data to the 'innerStream'
stream.Write(buffer, 0, buffer.Length);
}