I'm looking to reduce storage requirements for JSON data by deltifying it against a known set of defaults. Basically, what I want is an inverse for jQuery's .extend() function, such that the following test passes for arbitrary JSON-compatible objects:

function test_delta(defaults, delta) {
    var current = $.extend(true, {}, defaults, delta);

    QUnit.same(get_delta(current, defaults), delta);
}

Before I start writing my own get_delta(), is anyone aware of an existing implementation?

link|improve this question

You'll have to handle this one yourself, the hard (nested loop) way. As you probably know. It's even more fun if your JSON data has arbitrary depth. – Ken Redler Aug 4 '10 at 22:11
Yeah, I've come up with some interesting edge cases already; that's why I thought I'd ask the "SO oracle" before digging into it myself. Ah, well. :-) – Ben Blank Aug 4 '10 at 22:23
A good place to start would be looking at the jQuery.fn.extend function in jQuery source. – calvinf Aug 4 '10 at 22:31
@calvinf — Oh, I'm already quite familiar with extend()'s innards, I was mostly just hoping not to have to write it myself. ;-) – Ben Blank Aug 4 '10 at 22:37
start with a copy/paste of extend? ;) I'd like to see this appear on github when you're done – Jiaaro Nov 4 '10 at 22:44
feedback

2 Answers

What you're really looking for is an object diff(erential) algorithm.

Not too difficult to write -



function diff (obj1, obj2) {
   var delta = {};

   for (var x in obj1) {
       if (obj2.hasOwnProperty(x)) {
           if (typeof obj2[x] == "object") {
               //recurse nested objects/arrays
               delta[x] = diff(obj1[x], obj2[x]);
           }
           else {
               //if obj2 doesn't match then - modified attribute
               if (obj2[x] != obj1[x]) {
                   delta[x] = obj1[x];
               }
           }        
       }
       else {
           //obj2 doesn't have this - new attribute
           delta[x] = obj1[x];
       }
   }

   return delta;
}

alert( 
  JSON.stringify(
     diff({ hello : 'world', gone : 'fishing' }, 
          { hello : 'world' })
  )
);

//outputs:
{ gone : 'fishing' }

As you can see this is a very basic implementation - you could extend this to provide a complete differential by returning additions to obj2 in a separate object.

This code isn't bug free, object protoypes and functions will be handled differently in different browsers, but it should suffice as a demonstration for data structures.

link|improve this answer
I did take a stab at implementing my own, but there were enough unclear edge cases (particularly with arrays and deleted properties) that we decided to simply enlarge the database column instead. – Ben Blank Dec 14 '10 at 1:49
feedback

Try something like that:

jQuery.extend({
    deltaExtend: function(deep, target, defaults, delta){
        var result = jQuery.extend.apply(jQuery, arguments);
        jQuery(result).data('delta', delta);
        jQuery(result).data('defaults', defaults);
        return result;
    }
});

usage:

var result = $.deltaExtend(true, {}, defaults, delta);
$(result).data('delta') //returns delta object
$(result).data('defaults') //returns default object

It also can be tweaked to get it working for N objects, just requires a little more thinking.

link|improve this answer
This is a very interesting idea! Unfortunately, $.extend is not used in creating the "result" object, in my case. This was for a portal system, where each portlet could define its own default settings. The "current" settings would then be modified freely over the lifetime of the page and, when time came to save the portlet's state back to the server, I was hoping to perform a "blind" delta to reduce the storage requirements. – Ben Blank Feb 22 '11 at 18:59
I have another solution in mind, what browsers are you supporting, and what versions, more specifically are u supporting IE < IE8 ? – Amjad Masad Feb 22 '11 at 22:17
feedback

Your Answer

 
or
required, but never shown

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