3 * Generic operation result.
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.
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.
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
24 * Generic operation result class
25 * Has warning/error list, boolean status and arbitrary value
27 * "Good" means the operation was completed with no warnings or errors.
29 * "OK" means the operation was partially or wholly completed.
31 * An operation which is not OK should have errors so that the user can be
32 * informed as to what went wrong. Calling the fatal() function sets an error
33 * message and simultaneously switches off the OK flag.
35 * The recommended pattern for Status objects is to return a Status object
36 * unconditionally, i.e. both on success and on failure -- so that the
37 * developer of the calling code is reminded that the function can fail, and
38 * so that a lack of error-handling will be explicit.
47 /** Counters for batch operations */
49 public $successCount = 0;
52 public $failCount = 0;
54 /** Array to indicate which items of the batch operations were successful */
56 public $success = array();
59 public $errors = array();
62 public $cleanCallback = false;
65 * Factory function for fatal errors
67 * @param string|Message $message Message name or object
70 static function newFatal( $message /*, parameters...*/ ) {
71 $params = func_get_args();
73 call_user_func_array( array( &$result, 'error' ), $params );
79 * Factory function for good results
84 static function newGood( $value = null ) {
86 $result->value
= $value;
91 * Change operation result
93 * @param bool $ok Whether the operation completed
96 public function setResult( $ok, $value = null ) {
98 $this->value
= $value;
102 * Returns whether the operation completed and didn't have any error or
107 public function isGood() {
108 return $this->ok
&& !$this->errors
;
112 * Returns whether the operation completed
116 public function isOK() {
123 * @param string|Message $message Message name or object
125 public function warning( $message /*, parameters... */ ) {
126 $params = array_slice( func_get_args(), 1 );
127 $this->errors
[] = array(
129 'message' => $message,
130 'params' => $params );
134 * Add an error, do not set fatal flag
135 * This can be used for non-fatal errors
137 * @param string|Message $message Message name or object
139 public function error( $message /*, parameters... */ ) {
140 $params = array_slice( func_get_args(), 1 );
141 $this->errors
[] = array(
143 'message' => $message,
144 'params' => $params );
148 * Add an error and set OK to false, indicating that the operation
149 * as a whole was fatal
151 * @param string|Message $message Message name or object
153 public function fatal( $message /*, parameters... */ ) {
154 $params = array_slice( func_get_args(), 1 );
155 $this->errors
[] = array(
157 'message' => $message,
158 'params' => $params );
163 * Don't save the callback when serializing, because Closures can't be
164 * serialized and we're going to clear it in __wakeup anyway.
166 public function __sleep() {
167 $keys = array_keys( get_object_vars( $this ) );
168 return array_diff( $keys, array( 'cleanCallback' ) );
172 * Sanitize the callback parameter on wakeup, to avoid arbitrary execution.
174 public function __wakeup() {
175 $this->cleanCallback
= false;
179 * @param array $params
182 protected function cleanParams( $params ) {
183 if ( !$this->cleanCallback
) {
186 $cleanParams = array();
187 foreach ( $params as $i => $param ) {
188 $cleanParams[$i] = call_user_func( $this->cleanCallback
, $param );
194 * Get the error list as a wikitext formatted list
196 * @param string|bool $shortContext A short enclosing context message name, to
197 * be used when there is a single error
198 * @param string|bool $longContext A long enclosing context message name, for a list
201 public function getWikiText( $shortContext = false, $longContext = false ) {
202 if ( count( $this->errors
) == 0 ) {
204 $this->fatal( 'internalerror_info',
205 __METHOD__
. " called for a good result, this is incorrect\n" );
207 $this->fatal( 'internalerror_info',
208 __METHOD__
. ": Invalid result object: no error text but not OK\n" );
211 if ( count( $this->errors
) == 1 ) {
212 $s = $this->getErrorMessage( $this->errors
[0] )->plain();
213 if ( $shortContext ) {
214 $s = wfMessage( $shortContext, $s )->plain();
215 } elseif ( $longContext ) {
216 $s = wfMessage( $longContext, "* $s\n" )->plain();
219 $errors = $this->getErrorMessageArray( $this->errors
);
220 foreach ( $errors as &$error ) {
221 $error = $error->plain();
223 $s = '* ' . implode( "\n* ", $errors ) . "\n";
224 if ( $longContext ) {
225 $s = wfMessage( $longContext, $s )->plain();
226 } elseif ( $shortContext ) {
227 $s = wfMessage( $shortContext, "\n$s\n" )->plain();
234 * Get the error list as a Message object
236 * @param string|string[] $shortContext A short enclosing context message name (or an array of
237 * message names), to be used when there is a single error.
238 * @param string|string[] $longContext A long enclosing context message name (or an array of
239 * message names), for a list.
243 public function getMessage( $shortContext = false, $longContext = false ) {
244 if ( count( $this->errors
) == 0 ) {
246 $this->fatal( 'internalerror_info',
247 __METHOD__
. " called for a good result, this is incorrect\n" );
249 $this->fatal( 'internalerror_info',
250 __METHOD__
. ": Invalid result object: no error text but not OK\n" );
253 if ( count( $this->errors
) == 1 ) {
254 $s = $this->getErrorMessage( $this->errors
[0] );
255 if ( $shortContext ) {
256 $s = wfMessage( $shortContext, $s );
257 } elseif ( $longContext ) {
258 $wrapper = new RawMessage( "* \$1\n" );
259 $wrapper->params( $s )->parse();
260 $s = wfMessage( $longContext, $wrapper );
263 $msgs = $this->getErrorMessageArray( $this->errors
);
264 $msgCount = count( $msgs );
266 if ( $shortContext ) {
270 $s = new RawMessage( '* $' . implode( "\n* \$", range( 1, $msgCount ) ) );
271 $s->params( $msgs )->parse();
273 if ( $longContext ) {
274 $s = wfMessage( $longContext, $s );
275 } elseif ( $shortContext ) {
276 $wrapper = new RawMessage( "\n\$1\n", $s );
278 $s = wfMessage( $shortContext, $wrapper );
286 * Return the message for a single error.
287 * @param mixed $error With an array & two values keyed by
288 * 'message' and 'params', use those keys-value pairs.
289 * Otherwise, if its an array, just use the first value as the
290 * message and the remaining items as the params.
294 protected function getErrorMessage( $error ) {
295 if ( is_array( $error ) ) {
296 if ( isset( $error['message'] ) && $error['message'] instanceof Message
) {
297 $msg = $error['message'];
298 } elseif ( isset( $error['message'] ) && isset( $error['params'] ) ) {
299 $msg = wfMessage( $error['message'],
300 array_map( 'wfEscapeWikiText', $this->cleanParams( $error['params'] ) ) );
302 $msgName = array_shift( $error );
303 $msg = wfMessage( $msgName,
304 array_map( 'wfEscapeWikiText', $this->cleanParams( $error ) ) );
307 $msg = wfMessage( $error );
313 * Get the error message as HTML. This is done by parsing the wikitext error
315 * @param string $shortContext A short enclosing context message name, to
316 * be used when there is a single error
317 * @param string $longContext A long enclosing context message name, for a list
320 public function getHTML( $shortContext = false, $longContext = false ) {
321 $text = $this->getWikiText( $shortContext, $longContext );
322 $out = MessageCache
::singleton()->parse( $text, null, true, true );
323 return $out instanceof ParserOutput ?
$out->getText() : $out;
327 * Return an array with the wikitext for each item in the array.
328 * @param array $errors
331 protected function getErrorMessageArray( $errors ) {
332 return array_map( array( $this, 'getErrorMessage' ), $errors );
336 * Merge another status object into this one
338 * @param Status $other Other Status object
339 * @param bool $overwriteValue Whether to override the "value" member
341 public function merge( $other, $overwriteValue = false ) {
342 $this->errors
= array_merge( $this->errors
, $other->errors
);
343 $this->ok
= $this->ok
&& $other->ok
;
344 if ( $overwriteValue ) {
345 $this->value
= $other->value
;
347 $this->successCount +
= $other->successCount
;
348 $this->failCount +
= $other->failCount
;
352 * Get the list of errors (but not warnings)
354 * @return array A list in which each entry is an array with a message key as its first element.
355 * The remaining array elements are the message parameters.
357 public function getErrorsArray() {
358 return $this->getStatusArray( "error" );
362 * Get the list of warnings (but not errors)
364 * @return array A list in which each entry is an array with a message key as its first element.
365 * The remaining array elements are the message parameters.
367 public function getWarningsArray() {
368 return $this->getStatusArray( "warning" );
372 * Returns a list of status messages of the given type (or all if false)
373 * @param string $type
376 protected function getStatusArray( $type = false ) {
378 foreach ( $this->errors
as $error ) {
379 if ( $type === false ||
$error['type'] === $type ) {
380 if ( $error['message'] instanceof Message
) {
381 $result[] = array_merge(
382 array( $error['message']->getKey() ),
383 $error['message']->getParams()
385 } elseif ( $error['params'] ) {
386 $result[] = array_merge( array( $error['message'] ), $error['params'] );
388 $result[] = array( $error['message'] );
397 * Returns a list of status messages of the given type, with message and
398 * params left untouched, like a sane version of getStatusArray
400 * @param string $type
404 public function getErrorsByType( $type ) {
406 foreach ( $this->errors
as $error ) {
407 if ( $error['type'] === $type ) {
415 * Returns true if the specified message is present as a warning or error
417 * @param string|Message $message Message key or object to search for
421 public function hasMessage( $message ) {
422 if ( $message instanceof Message
) {
423 $message = $message->getKey();
425 foreach ( $this->errors
as $error ) {
426 if ( $error['message'] instanceof Message
427 && $error['message']->getKey() === $message
430 } elseif ( $error['message'] === $message ) {
438 * If the specified source message exists, replace it with the specified
439 * destination message, but keep the same parameters as in the original error.
441 * Note, due to the lack of tools for comparing Message objects, this
442 * function will not work when using a Message object as the search parameter.
444 * @param Message|string $source Message key or object to search for
445 * @param Message|string $dest Replacement message key or object
446 * @return bool Return true if the replacement was done, false otherwise.
448 public function replaceMessage( $source, $dest ) {
450 foreach ( $this->errors
as $index => $error ) {
451 if ( $error['message'] === $source ) {
452 $this->errors
[$index]['message'] = $dest;
462 public function getValue() {
469 public function __toString() {
470 $status = $this->isOK() ?
"OK" : "Error";
471 if ( count( $this->errors
) ) {
472 $errorcount = "collected " . ( count( $this->errors
) ) . " error(s) on the way";
474 $errorcount = "no errors detected";
476 if ( isset( $this->value
) ) {
477 $valstr = gettype( $this->value
) . " value set";
478 if ( is_object( $this->value
) ) {
479 $valstr .= "\"" . get_class( $this->value
) . "\" instance";
482 $valstr = "no value set";
484 $out = sprintf( "<%s, %s, %s>",
489 if ( count( $this->errors
) > 0 ) {
490 $hdr = sprintf( "+-%'-4s-+-%'-25s-+-%'-40s-+\n", "", "", "" );
494 foreach ( $this->getStatusArray() as $stat ) {
495 $out .= sprintf( "| %4d | %-25.25s | %-40.40s |\n",
498 implode( " ", array_slice( $stat, 1 ) )