xdiff.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. /**
  3. * Class used internally by Diff to actually compute the diffs.
  4. *
  5. * This class uses the xdiff PECL package (http://pecl.php.net/package/xdiff)
  6. * to compute the differences between the two input arrays.
  7. *
  8. * $Horde: framework/Text_Diff/Diff/Engine/xdiff.php,v 1.4.2.5 2009/07/24 13:06:24 jan Exp $
  9. *
  10. * Copyright 2004-2009 The Horde Project (http://www.horde.org/)
  11. *
  12. * See the enclosed file COPYING for license information (LGPL). If you did
  13. * not receive this file, see http://opensource.org/licenses/lgpl-license.php.
  14. *
  15. * @author Jon Parise <jon@horde.org>
  16. * @package Text_Diff
  17. */
  18. class Text_Diff_Engine_xdiff {
  19. /**
  20. */
  21. function diff($from_lines, $to_lines)
  22. {
  23. array_walk($from_lines, array('Text_Diff', 'trimNewlines'));
  24. array_walk($to_lines, array('Text_Diff', 'trimNewlines'));
  25. /* Convert the two input arrays into strings for xdiff processing. */
  26. $from_string = implode("\n", $from_lines);
  27. $to_string = implode("\n", $to_lines);
  28. /* Diff the two strings and convert the result to an array. */
  29. $diff = xdiff_string_diff($from_string, $to_string, count($to_lines));
  30. $diff = explode("\n", $diff);
  31. /* Walk through the diff one line at a time. We build the $edits
  32. * array of diff operations by reading the first character of the
  33. * xdiff output (which is in the "unified diff" format).
  34. *
  35. * Note that we don't have enough information to detect "changed"
  36. * lines using this approach, so we can't add Text_Diff_Op_changed
  37. * instances to the $edits array. The result is still perfectly
  38. * valid, albeit a little less descriptive and efficient. */
  39. $edits = array();
  40. foreach ($diff as $line) {
  41. if (!strlen($line)) {
  42. continue;
  43. }
  44. switch ($line[0]) {
  45. case ' ':
  46. $edits[] = new Text_Diff_Op_copy(array(substr($line, 1)));
  47. break;
  48. case '+':
  49. $edits[] = new Text_Diff_Op_add(array(substr($line, 1)));
  50. break;
  51. case '-':
  52. $edits[] = new Text_Diff_Op_delete(array(substr($line, 1)));
  53. break;
  54. }
  55. }
  56. return $edits;
  57. }
  58. }