Remove Revision::getRevisionText from ApiQueryDeletedrevs
[lhc/web/wiklou.git] / includes / libs / StringUtils.php
1 <?php
2 /**
3 * Methods to play with strings.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * A collection of static methods to play with strings.
25 */
26 class StringUtils {
27 /**
28 * Test whether a string is valid UTF-8.
29 *
30 * The function check for invalid byte sequences, overlong encoding but
31 * not for different normalisations.
32 *
33 * @note In MediaWiki 1.21, this function did not provide proper UTF-8 validation.
34 * In particular, the pure PHP code path did not in fact check for overlong forms.
35 * Beware of this when backporting code to that version of MediaWiki.
36 *
37 * @since 1.21
38 * @param string $value String to check
39 * @return bool Whether the given $value is a valid UTF-8 encoded string
40 */
41 static function isUtf8( $value ) {
42 return mb_check_encoding( (string)$value, 'UTF-8' );
43 }
44
45 /**
46 * Explode a string, but ignore any instances of the separator inside
47 * the given start and end delimiters, which may optionally nest.
48 * The delimiters are literal strings, not regular expressions.
49 * @param string $startDelim Start delimiter
50 * @param string $endDelim End delimiter
51 * @param string $separator Separator string for the explode.
52 * @param string $subject Subject string to explode.
53 * @param bool $nested True iff the delimiters are allowed to nest.
54 * @return ArrayIterator
55 */
56 static function delimiterExplode( $startDelim, $endDelim, $separator,
57 $subject, $nested = false ) {
58 $inputPos = 0;
59 $lastPos = 0;
60 $depth = 0;
61 $encStart = preg_quote( $startDelim, '!' );
62 $encEnd = preg_quote( $endDelim, '!' );
63 $encSep = preg_quote( $separator, '!' );
64 $len = strlen( $subject );
65 $m = [];
66 $exploded = [];
67 while (
68 $inputPos < $len &&
69 preg_match(
70 "!$encStart|$encEnd|$encSep!S", $subject, $m,
71 PREG_OFFSET_CAPTURE, $inputPos
72 )
73 ) {
74 $match = $m[0][0];
75 $matchPos = $m[0][1];
76 $inputPos = $matchPos + strlen( $match );
77 if ( $match === $separator ) {
78 if ( $depth === 0 ) {
79 $exploded[] = substr(
80 $subject, $lastPos, $matchPos - $lastPos
81 );
82 $lastPos = $inputPos;
83 }
84 } elseif ( $match === $startDelim ) {
85 if ( $depth === 0 || $nested ) {
86 $depth++;
87 }
88 } else {
89 $depth--;
90 }
91 }
92 $exploded[] = substr( $subject, $lastPos );
93 // This method could be rewritten in the future to avoid creating an
94 // intermediate array, since the return type is just an iterator.
95 return new ArrayIterator( $exploded );
96 }
97
98 /**
99 * Perform an operation equivalent to `preg_replace()`
100 *
101 * Matches this code:
102 *
103 * preg_replace( "!$startDelim(.*?)$endDelim!", $replace, $subject );
104 *
105 * ..except that it's worst-case O(N) instead of O(N^2). Compared to delimiterReplace(), this
106 * implementation is fast but memory-hungry and inflexible. The memory requirements are such
107 * that I don't recommend using it on anything but guaranteed small chunks of text.
108 *
109 * @param string $startDelim
110 * @param string $endDelim
111 * @param string $replace
112 * @param string $subject
113 * @return string
114 */
115 static function hungryDelimiterReplace( $startDelim, $endDelim, $replace, $subject ) {
116 $segments = explode( $startDelim, $subject );
117 $output = array_shift( $segments );
118 foreach ( $segments as $s ) {
119 $endDelimPos = strpos( $s, $endDelim );
120 if ( $endDelimPos === false ) {
121 $output .= $startDelim . $s;
122 } else {
123 $output .= $replace . substr( $s, $endDelimPos + strlen( $endDelim ) );
124 }
125 }
126
127 return $output;
128 }
129
130 /**
131 * Perform an operation equivalent to `preg_replace_callback()`
132 *
133 * Matches this code:
134 *
135 * preg_replace_callback( "!$startDelim(.*)$endDelim!s$flags", $callback, $subject );
136 *
137 * If the start delimiter ends with an initial substring of the end delimiter,
138 * e.g. in the case of C-style comments, the behavior differs from the model
139 * regex. In this implementation, the end must share no characters with the
140 * start, so e.g. `/*\/` is not considered to be both the start and end of a
141 * comment. `/*\/xy/*\/` is considered to be a single comment with contents `/xy/`.
142 *
143 * The implementation of delimiterReplaceCallback() is slower than hungryDelimiterReplace()
144 * but uses far less memory. The delimiters are literal strings, not regular expressions.
145 *
146 * @param string $startDelim Start delimiter
147 * @param string $endDelim End delimiter
148 * @param callable $callback Function to call on each match
149 * @param string $subject
150 * @param string $flags Regular expression flags
151 * @throws InvalidArgumentException
152 * @return string
153 */
154 static function delimiterReplaceCallback( $startDelim, $endDelim, $callback,
155 $subject, $flags = ''
156 ) {
157 $inputPos = 0;
158 $outputPos = 0;
159 $contentPos = 0;
160 $output = '';
161 $foundStart = false;
162 $encStart = preg_quote( $startDelim, '!' );
163 $encEnd = preg_quote( $endDelim, '!' );
164 $strcmp = strpos( $flags, 'i' ) === false ? 'strcmp' : 'strcasecmp';
165 $endLength = strlen( $endDelim );
166 $m = [];
167
168 while ( $inputPos < strlen( $subject ) &&
169 preg_match( "!($encStart)|($encEnd)!S$flags", $subject, $m, PREG_OFFSET_CAPTURE, $inputPos )
170 ) {
171 $tokenOffset = $m[0][1];
172 if ( $m[1][0] != '' ) {
173 if ( $foundStart &&
174 $strcmp( $endDelim, substr( $subject, $tokenOffset, $endLength ) ) == 0
175 ) {
176 # An end match is present at the same location
177 $tokenType = 'end';
178 $tokenLength = $endLength;
179 } else {
180 $tokenType = 'start';
181 $tokenLength = strlen( $m[0][0] );
182 }
183 } elseif ( $m[2][0] != '' ) {
184 $tokenType = 'end';
185 $tokenLength = strlen( $m[0][0] );
186 } else {
187 throw new InvalidArgumentException( 'Invalid delimiter given to ' . __METHOD__ );
188 }
189
190 if ( $tokenType == 'start' ) {
191 # Only move the start position if we haven't already found a start
192 # This means that START START END matches outer pair
193 if ( !$foundStart ) {
194 # Found start
195 $inputPos = $tokenOffset + $tokenLength;
196 # Write out the non-matching section
197 $output .= substr( $subject, $outputPos, $tokenOffset - $outputPos );
198 $outputPos = $tokenOffset;
199 $contentPos = $inputPos;
200 $foundStart = true;
201 } else {
202 # Move the input position past the *first character* of START,
203 # to protect against missing END when it overlaps with START
204 $inputPos = $tokenOffset + 1;
205 }
206 } elseif ( $tokenType == 'end' ) {
207 if ( $foundStart ) {
208 # Found match
209 $output .= $callback( [
210 substr( $subject, $outputPos, $tokenOffset + $tokenLength - $outputPos ),
211 substr( $subject, $contentPos, $tokenOffset - $contentPos )
212 ] );
213 $foundStart = false;
214 } else {
215 # Non-matching end, write it out
216 $output .= substr( $subject, $inputPos, $tokenOffset + $tokenLength - $outputPos );
217 }
218 $inputPos = $outputPos = $tokenOffset + $tokenLength;
219 } else {
220 throw new InvalidArgumentException( 'Invalid delimiter given to ' . __METHOD__ );
221 }
222 }
223 if ( $outputPos < strlen( $subject ) ) {
224 $output .= substr( $subject, $outputPos );
225 }
226
227 return $output;
228 }
229
230 /**
231 * Perform an operation equivalent to `preg_replace()` with flags.
232 *
233 * Matches this code:
234 *
235 * preg_replace( "!$startDelim(.*)$endDelim!$flags", $replace, $subject );
236 *
237 * @param string $startDelim Start delimiter regular expression
238 * @param string $endDelim End delimiter regular expression
239 * @param string $replace Replacement string. May contain $1, which will be
240 * replaced by the text between the delimiters
241 * @param string $subject String to search
242 * @param string $flags Regular expression flags
243 * @return string The string with the matches replaced
244 */
245 static function delimiterReplace( $startDelim, $endDelim, $replace, $subject, $flags = '' ) {
246 return self::delimiterReplaceCallback(
247 $startDelim, $endDelim,
248 function ( array $matches ) use ( $replace ) {
249 return strtr( $replace, [ '$0' => $matches[0], '$1' => $matches[1] ] );
250 },
251 $subject, $flags
252 );
253 }
254
255 /**
256 * More or less "markup-safe" explode()
257 * Ignores any instances of the separator inside `<...>`
258 * @param string $separator
259 * @param string $text
260 * @return array
261 */
262 static function explodeMarkup( $separator, $text ) {
263 $placeholder = "\x00";
264
265 // Remove placeholder instances
266 $text = str_replace( $placeholder, '', $text );
267
268 // Replace instances of the separator inside HTML-like tags with the placeholder
269 $cleaned = self::delimiterReplaceCallback(
270 '<', '>',
271 function ( array $matches ) use ( $separator, $placeholder ) {
272 return str_replace( $separator, $placeholder, $matches[0] );
273 },
274 $text
275 );
276
277 // Explode, then put the replaced separators back in
278 $items = explode( $separator, $cleaned );
279 foreach ( $items as $i => $str ) {
280 $items[$i] = str_replace( $placeholder, $separator, $str );
281 }
282
283 return $items;
284 }
285
286 /**
287 * More or less "markup-safe" str_replace()
288 * Ignores any instances of the separator inside `<...>`
289 * @param string $search
290 * @param string $replace
291 * @param string $text
292 * @return string
293 */
294 static function replaceMarkup( $search, $replace, $text ) {
295 $placeholder = "\x00";
296
297 // Remove placeholder instances
298 $text = str_replace( $placeholder, '', $text );
299
300 // Replace instances of the separator inside HTML-like tags with the placeholder
301 $cleaned = self::delimiterReplaceCallback(
302 '<', '>',
303 function ( array $matches ) use ( $search, $placeholder ) {
304 return str_replace( $search, $placeholder, $matches[0] );
305 },
306 $text
307 );
308
309 // Explode, then put the replaced separators back in
310 $cleaned = str_replace( $search, $replace, $cleaned );
311 $text = str_replace( $placeholder, $search, $cleaned );
312
313 return $text;
314 }
315
316 /**
317 * Escape a string to make it suitable for inclusion in a preg_replace()
318 * replacement parameter.
319 *
320 * @param string $string
321 * @return string
322 */
323 static function escapeRegexReplacement( $string ) {
324 $string = str_replace( '\\', '\\\\', $string );
325 $string = str_replace( '$', '\\$', $string );
326 return $string;
327 }
328
329 /**
330 * Workalike for explode() with limited memory usage.
331 *
332 * @param string $separator
333 * @param string $subject
334 * @return ArrayIterator|ExplodeIterator
335 */
336 static function explode( $separator, $subject ) {
337 if ( substr_count( $subject, $separator ) > 1000 ) {
338 return new ExplodeIterator( $separator, $subject );
339 } else {
340 return new ArrayIterator( explode( $separator, $subject ) );
341 }
342 }
343 }