A scala implementation of the RFC-6901 and RFC-6902. It also provides methods to compute diffs between two Json values that produce valid Json patches.
This library is published in the Maven Central Repository and is compiled against scala 2.9.3 and 2.10. You can add it to your sbt project by putting this line to your build description:
libraryDependencies += "org.gnieh" %% "diffson" % "0.1"
If you are using maven, add the following dependency to your pom.xml
:
<dependency>
<groupId>org.gnieh</groupId>
<artifactId>diffson_${scala.version}</artifactId>
<version>0.1</version>
</dependency>
Although the library is quite small and easy to use, here comes a summary of its basic usage.
There are three different entities living in the gnieh.diffson
package:
JsonPointer
which allows to parse and manipulate Json pointers as defined in RFC-6901,JsonPatch
which allows to parse, create and apply Json patches as defined in RFC-6902,JsonDiff
which allows to compute the diff between two Json values and create Json patches.
Basically if one wants to compute the diff between two Json objects, on can execute the following:
import gnieh.diffson._
val json1 = """{
| "a": 1,
| "b": true,
| "c": "test"
|}""".stripMargin
val json2 = """{
| "a": 6,
| "c": "test2",
| "d": false
|}""".stripMargin
val patch = JsonDiff.diff(json1, json2)
println(patch)
which will print the following in the console:
[{
"op":"replace",
"path":"/a",
"value":6
},{
"op":"remove",
"path":"/b"
},{
"op":"replace",
"path":"/c",
"value":"test2"
},{
"op":"add",
"path":"/d",
"value":false
}]
You can then apply the patch to json1
:
val json3 = patch(json1)
println(json3)
which prints something like:
{
"d":false,
"c":"test2",
"a":6
}
which we can easily verify is the same as json2
modulo reordering of fields.
You may also only want to apply existing patches:
import gnieh.diffson._
val raw = """[
| {
| "op": "test",
| "path": "/a",
| "value": 4
| }
|]""".stripMargin
val patch = JsonPatch.parse(raw)
val json1 = """{ "a": 4 }"""
val json2 = """{ "a": 7 }"""
patch(json1) // ok json1 is returned unchanched
patch(json2) // throws PatchException
The implementation uses lift-json to manipulate Json objects.
The diff between two arrays is computed by using the Patience Diff algorithm to compute the LCS between both arrays, which is quite simple to implement.
However one can replace the implementation by any other algorithm that implements the gnieh.diffson.Lcs
trait, e.g.:
val diff = new JsonDiff(new MyLcsAlgorithm)
then use diff
in lieu of JsonDiff
in the first usage example.