PluginProbe
WP Reset / 2.03
WP Reset v2.03
trunk 1.0 1.1 1.11 1.20 1.25 1.30 1.35 1.40 1.45 1.50 1.55 1.60 1.65 1.70 1.75 1.77 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.90 All 42 releases
wp-reset / libs / diff.php

diff.php in WP Reset 2.03, at libs/diff.php

180 lines 5.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Diff
4 *
5 * A comprehensive library for generating differences between two strings
6 * in multiple formats (unified, side by side HTML etc)
7 *
8 * PHP version 5
9 *
10 * Copyright (c) 2009 Chris Boulton <chris.boulton@interspire.com>
11 *
12 * All rights reserved.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are met:
16 *
17 * - Redistributions of source code must retain the above copyright notice,
18 * this list of conditions and the following disclaimer.
19 * - Redistributions in binary form must reproduce the above copyright notice,
20 * this list of conditions and the following disclaimer in the documentation
21 * and/or other materials provided with the distribution.
22 * - Neither the name of the Chris Boulton nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 *
38 * @package Diff
39 * @author Chris Boulton <chris.boulton@interspire.com>
40 * @copyright (c) 2009 Chris Boulton
41 * @license New BSD License http://www.opensource.org/licenses/bsd-license.php
42 * @version 1.1
43 * @link http://github.com/chrisboulton/php-diff
44 */
45
46 class WPR_Diff
47 {
48 /**
49 * @var array The "old" sequence to use as the basis for the comparison.
50 */
51 private $a = null;
52
53 /**
54 * @var array The "new" sequence to generate the changes for.
55 */
56 private $b = null;
57
58 /**
59 * @var array Array containing the generated opcodes for the differences between the two items.
60 */
61 private $groupedCodes = null;
62
63 /**
64 * @var array Associative array of the default options available for the diff class and their default value.
65 */
66 private $defaultOptions = array(
67 'context' => 3,
68 'ignoreNewLines' => false,
69 'ignoreWhitespace' => false,
70 'ignoreCase' => false
71 );
72
73 /**
74 * @var array Array of the options that have been applied for generating the diff.
75 */
76 private $options = array();
77
78 /**
79 * The constructor.
80 *
81 * @param array $a Array containing the lines of the first string to compare.
82 * @param array $b Array containing the lines for the second string to compare.
83 */
84 public function __construct($a, $b, $options=array())
85 {
86 $this->a = $a;
87 $this->b = $b;
88
89 if (is_array($options))
90 $this->options = array_merge($this->defaultOptions, $options);
91 else
92 $this->options = $this->defaultOptions;
93 }
94
95 /**
96 * Render a diff using the supplied rendering class and return it.
97 *
98 * @param object $renderer An instance of the rendering object to use for generating the diff.
99 * @return mixed The generated diff. Exact return value depends on the rendered.
100 */
101 public function render(WPR_Diff_Renderer_Html_SideBySide $renderer)
102 {
103 $renderer->diff = $this;
104 return $renderer->render();
105 }
106
107 /**
108 * Get a range of lines from $start to $end from the first comparison string
109 * and return them as an array. If no values are supplied, the entire string
110 * is returned. It's also possible to specify just one line to return only
111 * that line.
112 *
113 * @param int $start The starting number.
114 * @param int $end The ending number. If not supplied, only the item in $start will be returned.
115 * @return array Array of all of the lines between the specified range.
116 */
117 public function getA($start=0, $end=null)
118 {
119 if($start == 0 && $end === null) {
120 return $this->a;
121 }
122
123 if($end === null) {
124 $length = 1;
125 }
126 else {
127 $length = $end - $start;
128 }
129
130 return array_slice($this->a, $start, $length);
131
132 }
133
134 /**
135 * Get a range of lines from $start to $end from the second comparison string
136 * and return them as an array. If no values are supplied, the entire string
137 * is returned. It's also possible to specify just one line to return only
138 * that line.
139 *
140 * @param int $start The starting number.
141 * @param int $end The ending number. If not supplied, only the item in $start will be returned.
142 * @return array Array of all of the lines between the specified range.
143 */
144 public function getB($start=0, $end=null)
145 {
146 if($start == 0 && $end === null) {
147 return $this->b;
148 }
149
150 if($end === null) {
151 $length = 1;
152 }
153 else {
154 $length = $end - $start;
155 }
156
157 return array_slice($this->b, $start, $length);
158 }
159
160 /**
161 * Generate a list of the compiled and grouped opcodes for the differences between the
162 * two strings. Generally called by the renderer, this class instantiates the sequence
163 * matcher and performs the actual diff generation and return an array of the opcodes
164 * for it. Once generated, the results are cached in the diff class instance.
165 *
166 * @return array Array of the grouped opcodes for the generated diff.
167 */
168 public function getGroupedOpcodes()
169 {
170 if(!is_null($this->groupedCodes)) {
171 return $this->groupedCodes;
172 }
173
174 require_once dirname(__FILE__).'/diff/SequenceMatcher.php';
175 $sequenceMatcher = new WPR_Diff_SequenceMatcher($this->a, $this->b, null, $this->options);
176 $this->groupedCodes = $sequenceMatcher->getGroupedOpcodes($this->options['context']);
177 return $this->groupedCodes;
178 }
179 }
180