Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
jsondiffpatch-arrays-by-hash
Advanced tools
A plugin for jsondiffpatch that supports tracking changes in arrays based on object hashes instead of indexes.
A plugin for jsondiffpatch that supports tracking changes in arrays based on object hashes instead of indexes.
benjamine/jsondiffpatch is an awesome library for creating json patch objects from the difference between two JSON objects.
One nice feature is that it supports an objectHash function to better track items moving within an array. For example:
var withoutHash = jsondiffpatch.create();
var withHash = jsondiffpatch.create({objectHash: obj => obj.id});
var before = [{id: 1}, {id: 2}];
var after = [{id: 2}, {id: 1}];
// Without hash - Treated like objects didn't move, but their ids changed
withoutHash.diff(before, after);
// { '0': { id: [ 1, 2 ] }, '1': { id: [ 2, 1 ] }, _t: 'a' }
// With hash - Treated like a simple array re-order
with.diff(before, after);
// { _t: 'a', _1: [ '', 0, 3 ] }
This works within the context of one patch where the underlying JSON hasn't changed, but what if my underlying object changes or if I have multiple patches that I want to apply to the object? (like a merge)
var before = [{id: 1}, {id: 2}];
var flagged = [{id: 1}, {id: 2, foo: true}];
// Create two separate patches
// 1. Reorder patch just swaps objects 1 and 2 order
var reordered = [{id: 2}, {id: 1}];
var reorderPatch = withHash.diff(before, reordered);
// 2. Flag patch adds a property to object with ID 2
var flagged = [{id: 1}, {id: 2, foo: true}];
var flaggedPatch = withHash.diff(before, flagged);
// After some time passes, we apply the redorder patch
var after = withHash.patch(before, reorderPatch);
// And then apply the flagged patch, essentially doing a merge
after = withHash.patch(after, flaggedPatch);
// Oh no! The flag was instead applied to object with id 1, instead of 2
// [{id: 2}, {id: 1, foo: true}]
This plugin attempts to fix this shortcoming, by storing the result of objectHash
with each array change, and then reapplying those changes to the element with the specified object hash instead of the specified array index.
You can see the default jsondiffpatch array delta format here.
In our version, we update the keys with some prefixes that have special meaning:
-
- An array element was removed or moved+
- An array element was added!
- An array element was modified@
- The array key is an array index#
- The array key is an object hashIn practice deltas look liks this:
{
_t: 'a',
'+@4': [ { id: 'red' } ], // red item added at index 4
'-#blue': [ { id: 'blue' }, 6, 0, 0 ], // blue item removed from index 6
'-#green': [ '', 9, 4, 3 ], // green item moved
'!#green': { value: [1, 2] }, // green item also had its value changed
}
npm install -s jsondiffpatch-arrays-by-hash
Next set up your jsondiffpatch instance and add in the plugin filters:
import jsonDiffPatch from 'jsondiffpatch';
import jsondiffpatchArraysByHash from 'jsondiffpatch-arrays-by-hash';
const instance = jsonDiffPatch.create({
// Define an object hash function
objectHash: function getObjectHash(obj, index) {
return obj.id;
},
// Setting matchByPosition as a fallback for when objectHash returns undefined can create smaller diffs
matchByPosition: true,
});
// Replace the default array filter with our new array filter for the pipes we care about
instance.processor.pipes.diff
.replace('arrays', jsondiffpatchArraysByHash.diffFilter);
instance.processor.pipes.patch
.replace('arrays', jsondiffpatchArraysByHash.patchFilter)
.replace('arraysCollectChildren', jsondiffpatchArraysByHash.collectChildrenPatchFilter);
instance.processor.pipes.reverse
.replace('arrays', jsondiffpatchArraysByHash.reverseFilter)
.replace('arraysCollectChildren', jsondiffpatchArraysByHash.collectChildrenReverseFilter);
That's it! Use your jsondiffpatch instance to diff()
, patch()
, unpatch()
, etc.
This plugin was initially built to support Uber's internal experimentation platform. We created a peer review system for approving changes to experiments, and needed the ability to merge these changes together reliably.
FAQs
A plugin for jsondiffpatch that supports tracking changes in arrays based on object hashes instead of indexes.
The npm package jsondiffpatch-arrays-by-hash receives a total of 0 weekly downloads. As such, jsondiffpatch-arrays-by-hash popularity was classified as not popular.
We found that jsondiffpatch-arrays-by-hash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.