I'm developing a Windows Phone 7 project which uses a local SQLite database. The database is ~40MB uncompressed so I zipped it using maximum compression (Deflate) down to ~20MB. Here's my code (working).
private void unzip_DoWork(object sender, DoWorkEventArgs e)
{
BackgroundWorker worker = (BackgroundWorker)sender;
IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream file = new IsolatedStorageFileStream(filename, FileMode.Create, store);
// TODO: switch from Deflate ~18.7MB to LZMA ~12.1MB (original ~41.5MB)
StreamResourceInfo zipInfo = new StreamResourceInfo((Stream)e.Argument, null);
StreamResourceInfo streamInfo = Application.GetResourceStream(zipInfo, new Uri(filename, UriKind.Relative));
long total = streamInfo.Stream.Length;
long done = 0;
int size = 32768;
byte[] data = new byte[size];
while ((size = streamInfo.Stream.Read(data, 0, data.Length)) > 0)
{
file.Write(data, 0, size);
done += size;
int percentComplete = (int)(100 * ((float)done / (float)total));
worker.ReportProgress(percentComplete);
}
file.Close();
}
20MB is a good improvement but I noticed that a 7z archive using maximum compression (LZMA) achieves a file size of ~12MB. The zip file format supports LZMA content so I switched the Deflate compressed zip file for an LZMA compressed zip file and bang. I get NullReferenceException: Application.GetResourceStream(...) is returning null. Presumably that implementation doesn't handle LZMA content.
I tried another library but although it works fine for the Deflated zip, again it fails on the LZMA zip (NotSupportedException: Compression method not supported).
using ICSharpCode.SharpZipLib.Zip;
...
private void unzip_DoWork(object sender, DoWorkEventArgs e)
{
...
using (ZipInputStream zip = new ZipInputStream((Stream)e.Argument))
{
ZipEntry entry = zip.GetNextEntry(); // consume zip header (required)
....
}
}
I looked in NuGet and although there are a few C# libraries which claim to support LZMA decompression, they weren't compatible with my Windows Phone project (I think due to having been set up for .NET3 or .NET4 but not .NET3.5).
I thought about implementing a ICSharpCode.SharpZipLib.LZMA class using the LZMA SDK, but before I go reinventing any wheels I thought I should ask if anyone has successfully decompressed an LZMA zip on Windows Phone?
Any help much appreciated.