vote up 7 vote down star
2

I'm writing a Web application that needs to store JSON data in a small, fixed-size server-side cache via AJAX (think: Opensocial quotas). I do not have control over the server.

I need to reduce the size of the stored data to stay within a server-side quota, and was hoping to be able to gzip the stringified JSON in the browser before sending it up to the server.

However, I cannot find much in the way of JavaScript implementations of Gzip. Any suggestions for how I can compress the data on the client side before sending it up?

flag

44% accept rate
2  
You are sending it up to the server. That's why there are the notions of "upload" and "download". Maybe that's why you are getting answers that tell you "the server can do it". – Tomalak Nov 16 '08 at 20:27
A proper implementation of this is probably tricky, since javascript is single threaded. It would probably have to compress in batches, using setTimeout(), so that the UI doesn't lock up while compressing. – August Lilleaas Sep 15 at 17:47

6 Answers

vote up 2 vote down

Here are some other compression algorithms implemented in Javascript:

link|flag
this LZMA implementation requires BrowserPlus (a browser extension) and does not look to be pure Javascript – Piotr Findeisen Oct 27 at 8:36
Thanks, you're right – Mauricio Scheffer Oct 27 at 12:07
this LZ77 implementation is no longer available and at least it's Python version (published on the same page) was incorrect for quite simple inputs. – Piotr Findeisen Oct 30 at 13:04
geocities dead, will update the link – Mauricio Scheffer Oct 30 at 13:45
vote up 0 vote down

I can't help you with GZipping on the "fly". But if you want to GZip your WebResource JS then Kariem's blog about GZipping in nAnt might help you...

link|flag
vote up 8 vote down

I don't know of any gzip implementations, but the jsolait library has functions for LZW compression/decompression. The code is covered under the LGPL.

// LZW-compress a string
function lzw_encode(s) {
    var dict = {};
    var data = (s + "").split("");
    var out = [];
    var currChar;
    var phrase = data[0];
    var code = 256;
    for (var i=1; i<data.length; i++) {
        currChar=data[i];
        if (dict[phrase + currChar] != null) {
            phrase += currChar;
        }
        else {
            out.push(phrase.length > 1 ? dict[phrase] : phrase.charCodeAt(0));
            dict[phrase + currChar] = code;
            code++;
            phrase=currChar;
        }
    }
    out.push(phrase.length > 1 ? dict[phrase] : phrase.charCodeAt(0));
    for (var i=0; i<out.length; i++) {
        out[i] = String.fromCharCode(out[i]);
    }
    return out.join("");
}

// Decompress an LZW-encoded string
function lzw_decode(s) {
    var dict = {};
    var data = (s + "").split("");
    var currChar = data[0];
    var oldPhrase = currChar;
    var out = [currChar];
    var code = 256;
    var phrase;
    for (var i=1; i<data.length; i++) {
        var currCode = data[i].charCodeAt(0);
        if (currCode < 256) {
            phrase = data[i];
        }
        else {
           phrase = dict[currCode] ? dict[currCode] : (oldPhrase + currChar);
        }
        out.push(phrase);
        currChar = phrase.charAt(0);
        dict[code] = oldPhrase + currChar;
        code++;
        oldPhrase = phrase;
    }
    return out.join("");
}
link|flag
1  
How can the code be LGPL if the algorithm is patented? Or are all patents truly expired? – David Citron Nov 16 '08 at 22:05
According to Wikipedia, the patents expired a few years ago. It might be a good idea to check that out though. – Matthew Crumley Nov 16 '08 at 22:39
LZW is way too old to still be patented. Last patents ran out in 2003 or so. There are loads of free implementations. – ypnos Nov 16 '08 at 22:39
1  
I see at least two problems with the code above: 1) try to compress "Test to compress this \u0110\u0111\u0112\u0113\u0114 non ascii characters.", 2) No error is reported if code > 65535. – some Nov 17 '08 at 5:40
And I forgot the third one: The output from encode is in UTF-16. Does your application handle that? – some Nov 17 '08 at 5:47
show 2 more comments
vote up 1 vote down

You can use a 1 pixel per 1 pixel Java applet embedded in the page and use that for compression.

It's not JavaScript and the clients will need a Java runtime but it will do what you need.

link|flag
1  
Interesting, but I'd rather avoid including an applet if possible. – David Citron Nov 16 '08 at 20:53
+1, -1, woot! I wouldn't have used a java craplet, but it's a useful answer regardless, so +1 :) – August Lilleaas Sep 15 at 17:41
vote up 0 vote down

I guess a generic client-side JavaScript compression implementation would be a very expensive operation in terms of processing time as opposed to transfer time of a few more HTTP packets with uncompressed payload.

Have you done any testing that would give you an idea how much time there is to save? I mean, bandwidth savings can't be what you're after, or can it?

link|flag
I need to keep the total data size within a certain quota--size is more important than time. – David Citron Nov 16 '08 at 20:45
Hm... Why is the limit? Just curious. – Tomalak Nov 16 '08 at 20:48
Well, here's Google's take on it: code.google.com/apis/opensocial/… -- Typical Opensocial quotas are around 10K. – David Citron Nov 16 '08 at 20:52
I see, thanks for the clarification. – Tomalak Nov 16 '08 at 20:57
vote up 0 vote down

Most browsers can decompress gzip on the fly. That might be a better option than a javascript implementation.

link|flag
4  
Yes, but I need to compress the data on the client side before sending it down... – David Citron Nov 16 '08 at 20:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.