summaryrefslogtreecommitdiff
path: root/diff-lcs/tags/release-1.0/README
blob: 7bb69c1fcf0f0d633047eea225af1fd90bf31816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Diff::LCS README
================
This is the 1.0 release of Diff::LCS for Ruby, based originally on Perl's
Algorithm::Diff[1]. It uses the McIlroy-Hunt longest common subsequence (LCS)
algorithm to compute intelligent differences between two sequenced enumerable
containers[2]. The implementation is based on Mario I. Wolczko's[3] Smalltalk
version (1.2, 1993)[4] and Ned Konz's[5] Perl version (Algorithm::Diff)[6].

Using this module is quite simple. By default, Diff::LCS does not extend
objects with the Diff::LCS interface, but will be called as if it were a
function:

  require 'diff/lcs'

  seq1 = %w(a b c e h j l m n p)
  seq2 = %w(b c d e f j k l m r s t)

  lcs = Diff::LCS.LCS(seq1, seq2)
  diffs = Diff::LCS.diff(seq1, seq2)
  sdiff = Diff::LCS.sdiff(seq1, seq2)
  seq = Diff::LCS.traverse_sequences(seq1, seq2, callback_obj)
  bal = Diff::LCS.traverse_balanced(seq1, seq2, callback_obj)

Objects can be extended with Diff::LCS:

  seq1.extend(Diff::LCS)
  lcs = seq1.lcs(seq2)
  diffs = seq1.diff(seq2)
  sdiff = seq1.sdiff(seq2)
  seq = Diff::LCS.traverse_sequences(seq1, seq2, callback_obj)
  bal = Diff::LCS.traverse_balanced(seq1, seq2, callback_obj)

By requiring 'diff/lcs/array' or 'diff/lcs/string', Array or String
will be extended for use this way.

Copyright
=========
#--
# Copyright 2004 Austin Ziegler <diff-lcs@halostatue.ca>
#   adapted from:
#     Algorithm::Diff (Perl) by Ned Konz <perl@bike-nomad.com>
#     Smalltalk by Mario I. Wolczko <mario@wolczko.com>
#   implements McIlroy-Hunt diff algorithm
#
# This program is free software. It may be redistributed and/or modified under
# the terms of the GPL version 2 (or later), the Perl Artistic licence, or the
# Ruby licence.
# 
# $Id$
#++

Footnotes
=========
[1] This library is called Diff::LCS because there are multiple
    Ruby libraries called Algorithm::Diff maintained by other authors.
[2] By sequenced enumerable, I mean that the orderr of enumeration is
    predictable and consistent for the same set of data. While it is
    theoretically possible to generate a diff for unordereded hash, it
    will only be meaningful if the enumeration of the hashes is
    consistent. In general, this will mean that containers that behave
    like String or Array will perform best.
[3] mario@wolczko.com
[4] ftp://st.cs.uiuc.edu/pub/Smalltalk/MANCHESTER/manchester/4.0/diff.st
[5] perl@bike-nomad.com
[6] http://search.cpan.org/~nedkonz/Algorithm-Diff-1.15/