SYNOPSIS

    use Text::Diff;

    ## Mix and match filenames, strings, file handles, producer subs,
    ## or arrays of records; returns diff in a string.
    ## WARNING: can return B<large> diffs for large files.
    my $diff = diff "file1.txt", "file2.txt", { STYLE => "Context" };
    my $diff = diff \$string1,   \$string2,   \%options;
    my $diff = diff \*FH1,       \*FH2;
    my $diff = diff \&reader1,   \&reader2;
    my $diff = diff \@records1,  \@records2;

    ## May also mix input types:
    my $diff = diff \@records1,  "file_B.txt";

DESCRIPTION

\*(C`diff()\*(C' provides a basic set of services akin to the \s-1GNU\s0 \*(C`diff\*(C' utility. It is not anywhere near as feature complete as \s-1GNU\s0 \*(C`diff\*(C', but it is better integrated with Perl and available on all platforms. It is often faster than shelling out to a system's \*(C`diff\*(C' executable for small files, and generally slower on larger files.

Relies on Algorithm::Diff for, well, the algorithm. This may not produce the same exact diff as a system's local \*(C`diff\*(C' executable, but it will be a valid diff and comprehensible by \*(C`patch\*(C'. We haven't seen any differences between Algorithm::Diff's logic and \s-1GNU\s0 diff's, but we have not examined them to make sure they are indeed identical.

Note: If you don't want to import the \*(C`diff\*(C' function, do one of the following:

use Text::Diff ();

require Text::Diff;

That's a pretty rare occurence, so \*(C`diff()\*(C' is exported by default. =head1 \s-1OPTIONS\s0

diff() takes two parameters from which to draw input and a set of options to control it's output. The options are:

\s-1FILENAME_A\s0, \s-1MTIME_A\s0, \s-1FILENAME_B\s0, \s-1MTIME_B\s0

The name of the file and the modification time \*(L"files\*(R" These are filled in automatically for each file when diff() is passed a filename, unless a defined value is passed in. If a filename is not passed in and \s-1FILENAME_A\s0 and \s-1FILENAME_B\s0 are not provided or \*(C`undef\*(C', the header will not be printed. Unused on \*(C`OldStyle\*(C' diffs.

\s-1OFFSET_A\s0, \s-1OFFSET_B\s0

The index of the first line / element. These default to 1 for all parameter types except \s-1ARRAY\s0 references, for which the default is 0. This is because \s-1ARRAY\s0 references are presumed to be data structures, while the others are line oriented text.

\s-1STYLE\s0

\*(L"Unified\*(R", \*(L"Context\*(R", \*(L"OldStyle\*(R", or an object or class reference for a class providing \*(C`file_header()\*(C', \*(C`hunk_header()\*(C', \*(C`hunk()\*(C', \*(C`hunk_footer()\*(C' and \*(C`file_footer()\*(C' methods. The two footer() methods are provided for overloading only; none of the formats provide them. Defaults to \*(L"Unified\*(R" (unlike standard \*(C`diff\*(C', but Unified is what's most often used in submitting patches and is the most human readable of the three. If the package indicated by the \s-1STYLE\s0 has no hunk() method, c<diff()> will load it automatically (lazy loading). Since all such packages should inherit from Text::Diff::Base, this should be marvy. Styles may be specified as class names (\*(C`STYLE =\*(C' \*(L"Foo\*(R"), in which case they will be \*(C`new()\*(C'ed with no parameters, or as objects (\*(C`STYLE =\*(C' Foo->new>).

\s-1CONTEXT\s0

How many lines before and after each diff to display. Ignored on old-style diffs. Defaults to 3.

\s-1OUTPUT\s0

Examples and their equivalent subroutines: OUTPUT => \*FOOHANDLE, # like: sub { print FOOHANDLE shift() } OUTPUT => \$output, # like: sub { $output .= shift } OUTPUT => \@output, # like: sub { push @output, shift } OUTPUT => sub { $output .= shift }, If no \*(C`OUTPUT\*(C' is supplied, returns the diffs in a string. If \*(C`OUTPUT\*(C' is a \*(C`CODE\*(C' ref, it will be called once with the (optional) file header, and once for each hunk body with the text to emit. If \*(C`OUTPUT\*(C' is an IO::Handle, output will be emitted to that handle.

\s-1FILENAME_PREFIX_A\s0, \s-1FILENAME_PREFIX_B\s0

The string to print before the filename in the header. Unused on \*(C`OldStyle\*(C' diffs. Defaults are "---", "+++" for Unified and "***", "+++" for Context.

\s-1KEYGEN\s0, \s-1KEYGEN_ARGS\s0

These are passed to \*(L"traverse_sequences\*(R" in Algorithm::Diff.

Note: if neither \*(C`FILENAME_\*(C' option is defined, the header will not be printed. If at one is present, the other and both \s-1MTIME_\s0 options must be present or \*(L"Use of undefined variable\*(R" warnings will be generated (except on \*(C`OldStyle\*(C' diffs, which ignores these options).

Formatting Classes

These functions implement the output formats. They are grouped in to classes so diff() can use class names to call the correct set of output routines and so that you may inherit from them easily. There are no constructors or instance methods for these classes, though subclasses may provide them if need be.

Each class has file_header(), hunk_header(), hunk(), and footer() methods identical to those documented in the Text::Diff::Unified section. header() is called before the hunk() is first called, footer() afterwards. The default footer function is an empty method provided for overloading:

sub footer { return "End of patch\n" }

Some output formats are provided by external modules (which are loaded automatically), such as Text::Diff::Table. These are are documented here to keep the documentation simple.

Text::Diff::Base

Returns "" for all methods (other than \*(C`new()\*(C').

Text::Diff::Unified

--- A Mon Nov 12 23:49:30 2001 +++ B Mon Nov 12 23:49:30 2001 @@ -2,13 +2,13 @@ 2 3 4 -5d +5a 6 7 8 9 +9a 10 11 -11d 12 13

file_header

$s = Text::Diff::Unified->file_header( $options ); Returns a string containing a unified header. The sole parameter is the options hash passed in to diff(), containing at least: FILENAME_A => $fn1, MTIME_A => $mtime1, FILENAME_B => $fn2, MTIME_B => $mtime2 May also contain FILENAME_PREFIX_A => "---", FILENAME_PREFIX_B => "+++", to override the default prefixes (default values shown).

hunk_header

Text::Diff::Unified->hunk_header( \@ops, $options ); Returns a string containing the output of one hunk of unified diff.

Text::Diff::Unified::hunk

Text::Diff::Unified->hunk( \@seq_a, \@seq_b, \@ops, $options ); Returns a string containing the output of one hunk of unified diff.

Text::Diff::Table

+--+----------------------------------+--+------------------------------+ | |../Test-Differences-0.2/MANIFEST | |../Test-Differences/MANIFEST | | |Thu Dec 13 15:38:49 2001 | |Sat Dec 15 02:09:44 2001 | +--+----------------------------------+--+------------------------------+ | | * 1|Changes * | 1|Differences.pm | 2|Differences.pm | | 2|MANIFEST | 3|MANIFEST | | | * 4|MANIFEST.SKIP * | 3|Makefile.PL | 5|Makefile.PL | | | * 6|t/00escape.t * | 4|t/00flatten.t | 7|t/00flatten.t | | 5|t/01text_vs_data.t | 8|t/01text_vs_data.t | | 6|t/10test.t | 9|t/10test.t | +--+----------------------------------+--+------------------------------+

This format also goes to some pains to highlight \*(L"invisible\*(R" characters on differing elements by selectively escaping whitespace:

+--+--------------------------+--------------------------+ | |demo_ws_A.txt |demo_ws_B.txt | | |Fri Dec 21 08:36:32 2001 |Fri Dec 21 08:36:50 2001 | +--+--------------------------+--------------------------+ | 1|identical |identical | * 2| spaced in | also spaced in * * 3|embedded space |embedded tab * | 4|identical |identical | * 5| spaced in |\ttabbed in * * 6|trailing spaces\s\s\n |trailing tabs\t\t\n * | 7|identical |identical | * 8|lf line\n |crlf line\r\n * * 9|embedded ws |embedded\tws * +--+--------------------------+--------------------------+

See \*(L"Text::Diff::Table\*(R" for more details, including how the whitespace escaping works.

Text::Diff::Context

*** A Mon Nov 12 23:49:30 2001 --- B Mon Nov 12 23:49:30 2001 *************** *** 2,14 **** 2 3 4 ! 5d 6 7 8 9 10 11 - 11d 12 13 --- 2,14 ---- 2 3 4 ! 5a 6 7 8 9 + 9a 10 11 12 13

Note: hunk_header() returns only \*(L"***************\n\*(R".

Text::Diff::OldStyle

5c5 < 5d --- > 5a 9a10 > 9a 12d12 < 11d

Note: no file_header().

LIMITATIONS

Must suck both input files entirely in to memory and store them with a normal amount of Perlish overhead (one array location) per record. This is implied by the implementation of Algorithm::Diff, which takes two arrays. If Algorithm::Diff ever offers an incremental mode, this can be changed (contact the maintainers of Algorithm::Diff and Text::Diff if you need this; it shouldn't be too terribly hard to tie arrays in this fashion).

Does not provide most of the more refined \s-1GNU\s0 diff options: recursive directory tree scanning, ignoring blank lines / whitespace, etc., etc. These can all be added as time permits and need arises, many are rather easy; patches quite welcome.

Uses closures internally, this may lead to leaks on \*(C`perl\*(C' versions 5.6.1 and prior if used many times over a process' life time.

AUTHOR

Adam Kennedy <[email protected]>

Barrie Slaymaker <[email protected]>

COPYRIGHT

Some parts copyright 2009 Adam Kennedy.

Copyright 2001 Barrie Slaymaker. All Rights Reserved.

You may use this under the terms of either the Artistic License or \s-1GNU\s0 Public License v 2.0 or greater.