I would like to compute the diff between two XML files or nodes using XSL/XSLT. Is there any stylesheet readily available or any simple way of doing it?
|
|
Interesting question! I once tried to do something similar involving two XML sources, and my experience was that there just ain't no way. You could use XSL's facility for including user-built functions, and code up something really slick. But I really can't see it. If I were to do something like this, I'd process the two XML files in parallel using DOM4J, which lets me easily traverse the code programmatically and do detail sub-queries. Trying to do this in XSLT will either prove you to be a genius or drive you into madness. |
|||
|
|
|
XSLT is data-driven, that is, it goes through the single source XML file top to bottom looking for template matches in the XSL stylesheet. The templates don't really know where they are in the data, they just run their code when matched. You can reference another XML source, but the program will run according to the traversal of the original source. So when you arrive at the nth child element of This behavior is opposite of most traditional scripts, which run through the program code top to bottom, calling on the data file when instructed. The latter--pull processing--is what you probably need to compare two XML sources. XSLT will break down in comparison as soon as there is a difference. |
||||
|
|
|
There are ways to do this, but I wouldn't say it's simple. In the past I've used an opensource utility called diffmk, this produces an output XML with extra tags showing what has been added/removed... I had to write an extra stylesheet to then convert this into a more readable HTML report. Some diff tools like XMLSpy Diff dog are good, but costly. |
||||
|
|
|
If what you mean by diff is something like checking whether items exist in one document (or node) but not another, you can use xpath key() function with a third parameter
|
|||
|
|
|
This is not a mystery! Here are the general steps:
Hope this helped. Cheers! |
||||
|
|