vote up 4 vote down star
3

I have a configuration file that I consider to be my "base" configuration. I'd like to compare up to 10 other configuration files against that single base file. I'm looking for a report where each file is compared against the base file.

I've been looking at diff and sdiff, but they don't completely offer what I am looking for.

I've considered diff'ing the base against each file individually, but my problem then become merging those into a report. Ideally, if the same line is missing in all 10 config files (when compared to the base config), I'd like that reported in an easy to visualize manner. For example, here is essentially what I am looking to be able to do (this example has 1 base file and 3 config files each individually compared against the base config):

Here's a link to the picture below alt text

Notice that some rows are missing in several of the config files (when compared individually to the base). I'd like to be able to put those on the same line (as above).

Note, the screenshot above is simply a mockup, and not an actual application.

I've looked at using some Delphi controls for this and writing my own (I have Delphi 2007), but if there is a program that already does this, I'd prefer it.

The Delphi controls I've looked at are TDiff, and the TrmDiff* components included in rmcontrols.

flag

I cobbled together a workable solution. Essentially I wrote my own Delphi app that runs a windows port of sdiff.exe against the 1st and 2nd file. Then the 1st and 3rd file. Then the 1st and 4th, etc. Then I populate a dbgrid with those results (like in the screenshot). Then I highlight. It is slow (because it is single threaded) and ugly. But it mostly does what I want. And I'm not working with much data – Mick Jun 4 at 20:06

8 Answers

vote up 1 vote down check

None of the existing diff/merge tools will do what you want. Based on your sample screenshot you're looking for an algorithm that performs alignments over multiple files and gives appropriate weights based on line similarity.

The first issue is weighting the alignment based on line similarity. Most popular alignment algorithms, including the one used by GNU diff, TDiff, and TrmDiff, do an alignment based on line hashes, and just check whether the lines match exactly or not. You can pre-process the lines to remove whitespace or change everything to lower-case, but that's it. Add, remove, or change a letter and the alignment things the entire line is different. Any alignment of different lines at that point is purely accidental.

Beyond Compare does take line similarity into account, but it really only works for 2-way comparisons. Compare It! also has some sort of similarity algorithm, but it also limited to 2-way comparisons. It can slow down the comparison dramatically, and I'm not aware of any other component or program, commercial or open source, that even tries.

The other issue is that you also want a multi-file comparison. That means either running the 2-way diff algorithm a bunch of times and stitching the results together or finding an algorithm that does multiple alignments at once.

Stitching will be difficult: your sample shows that the original file can have missing lines, so you'd need to compare every file to every other file to get the a bunch of alignments, and then you'd need to work out the best way to match those alignments up. A naive stitching algorithm is pretty easy to do, but it will get messed up by trivial matches (blank lines for example).

There are research papers that cover aligning multiple sequences at once, but they're usually focused on DNA comparisons, you'd definitely have to code it up yourself. Wikipedia covers a lot of the basics, then you'd probably need to switch to Google Scholar.

link|flag
vote up 1 vote down

Diff3 should help. If you're on Windows, you can use it from Cygwin or from diffutils.

link|flag
vote up 1 vote down

I made my own diff tool DirDiff because I didn't want parts that match two times on screen, and differing parts above eachother for easy comparison. You could use it in directory-mode on a directory with an equal number of copies of the base file. It doesn't render exports of diff's, but I'll list it as a feature request.

link|flag
vote up 0 vote down

You might want to look at some Merge components as what you describe is exactly what Merge tools do between the common base, version control file and local file. Except that you want more than 2 files (+ base)...
Just my $0.02

link|flag
vote up 0 vote down

Try Scooter Software's Beyond Compare. It supports 3-way merge and is written in Delphi / Kylix for multi-platform support. I've used it pretty extensively (even over a VPN) and it's performed well.

link|flag
vote up 0 vote down

for f in file1 file2 file3 file4 file5; do echo "$f\n\n">> outF; diff $f baseFile >> outF; echo "\n\n">> outF; done

link|flag
vote up 0 vote down

KDiff (http://kdiff3.sourceforge.net/)

link|flag
vote up 0 vote down

SourceGear Diffmerge is nice (and free) for windows based file diffing.

link|flag

Your Answer

Get an OpenID
or

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