Mdiff

From Fluids Wiki
Revision as of 14:27, 19 May 2011 by Fluidslab (talk | contribs) (Created page with '== Source code comparison == The scenario of wanting to know what has changed between two versions of source code often arises. For example, you are running a specific version o…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source code comparison

The scenario of wanting to know what has changed between two versions of source code often arises. For example, you are running a specific version of a model (SPINS, MITgcm, IGW, etc.) while the model is being improved by the developers. After a few weeks or months pass, a lot of differences accumulate between the latest greatest version and the version you are actually running. It's not always easy to determine what has changed, particularly if a revision control system is not being used.

Command line diff can be helpful, but, reading the output of diff is awkward and the context is usually omitted. ("Sure, line 75 has been replaced, but what subroutine is that in?"). The script mdiff.sh is designed to alleviate this problem.

You will need a graphical diff program (xdiff, xxdiff, fldiff, etc) and fldiff is recommended. For ubuntu linux, this may be installed by the command

$ sudo apt-get install fldiff

If you don't have ubuntu, check your package manager for the fldiff package. Failing that, install it from source code from http://www.easysw.com/~mike/fldiff/index.html.

You also need the shell script mdiff.sh which should be placed in your $HOME/bin. The code for mdiff.sh follows:

#!/bin/bash
# A directory compare script for comparing source codes
# Usage:  mdiff.sh dir1 dir2 [S]
# where specifying S will cause the script to show the "only in" entries
#
# Michael Dunphy 23 Nov 2005

DIFF=diff
GUIDIFF=fldiff

if [ $# -lt 2 ]; then
  echo "quit!"
  exit 1;
fi

if [ -z $3 ]; then
  OI="Only in" 
else
  OI="NOT_REMOVING_ONLY_IN_ENTRIES"
fi

d1=$1
d2=$2
if [ -d $d1 ] && [ -d $d2 ]; then
#  $HOME/bin/gdiff -r -b --brief \
  $DIFF -r -b --exclude=.svn --brief \
  $d1 $d2 \
  | sed s/"Files"/$GUIDIFF/g | sed s/" and "/" "/g \
  | sed s/differ//g | grep -v "$OI"
fi


Now that you have both fldiff and mdiff.sh you can compare directories by

$ mdiff dir1 dir2 | sh

You will be presented with a graphical window that shows a file from dir1 on the left and from dir2 on the right, with differences highlighted. Press Ctrl+Q to close that window and proceed to the next file. The result is that with one command, you can rapidly scroll through all files that have changed and see the differences.