Click here to Skip to main content
15,890,557 members
Articles / Programming Languages / C#

Simple way to decompress Gzip files

Rate me:
Please Sign up or sign in to vote.
2.69/5 (6 votes)
3 Mar 2009CPOL1 min read 25.8K   15   2
Decompressing Gzip files.

Introduction

I have been working with Gzip files, and needed a solid way to read a stream into a correct byte size array. I studied some of what MSDN says to do, and worked out a solution to the problem. The problem is MSDN doesn’t set the size of the array and uses a default size of 4086 bytes. Some of the files I decompress are well over that amount, so I read the RFC (RFC 1952) for a Gzip, and came up with the following code.

Background

In the program that I’m writing, there is code for us to control the amount of memory that we allocate for each item used. The basic idea is to only allocate the amount of memory that you need, and this goes back to my unmanaged coding days.

Using the Code

Instead of creating a huge array of bytes and guessing what the actual size would be, we can parse the packed bytes and get the last 4 bits using ConvertBit, and get the decompressed size. I use the code for messages that are wrapped in headers, so that is why I use the variable start to offset the data, which is the start of my Gzip data. This fairly straightforward code just passes the byte array and the start index into the function, and it will hand back the decompressed file.

C#
/// <summary>
/// Method is used to decompress Gzip files.
/// </summary>
/// <param name="data">Compressed Data</param>
/// <param name="start">Start index of compressed Data</param>
/// <returns>Uncompressed Data in Byte Array</returns>

public static byte[] HandleGzipMessage(byte[] data, int start)
{
    MemoryStream memStream;
    int size = BitConverter.ToInt32(data, data.Length - 4);
    byte[] uncompressedData = new byte[size];
    memStream = new MemoryStream(data, start, (data.Length - start));
    memStream.Position = 0;
    GZipStream gzStream = new GZipStream(memStream, CompressionMode.Decompress);

    try
    {
        gzStream.Read(uncompressedData, 0, size);
    }
    catch(Exception gzError)
    {
        throw gzError;
    }
    gzStream.Close();
    return uncompressedData;
}

Points of Interest

I hope this helps someone out with Gzip files.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Chamadness10-Mar-09 4:36
Chamadness10-Mar-09 4:36 
Try again - better code next time!
GeneralMy vote of 1 Pin
Eugene Sichkar6-Mar-09 16:14
Eugene Sichkar6-Mar-09 16:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.