3 * MediaWiki error classes
5 * Copyright © 2005 Brion Vibber <brion@pobox.com>
6 * http://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
27 * Since PHP4 doesn't have exceptions, here's some error objects
28 * loosely modeled on the standard PEAR_Error model...
33 * @param $message string
35 * @deprecated since 1.17
37 function __construct( $message ) {
38 wfDeprecated( __METHOD__
, '1.17' );
39 $this->mMessage
= $message;
43 * @return string Plaintext error message to display
45 function getMessage() {
46 return $this->mMessage
;
50 * In following PEAR_Error model this could be formatted differently,
51 * but so far it's not.
55 return $this->getMessage();
59 * Returns true if the given object is a WikiError-descended
60 * error object, false otherwise.
62 * @param $object mixed
65 * @deprecated since 1.17
67 public static function isError( $object ) {
68 wfDeprecated( __METHOD__
, '1.17' );
69 if ( $object instanceof WikiError
) {
71 } elseif ( $object instanceof Status
) {
72 return !$object->isOK();
80 * Localized error message object
83 class WikiErrorMsg
extends WikiError
{
85 * @param string $message wiki message name
86 * @param ... parameters to pass to wfMsg()
88 * @deprecated since 1.17
90 function __construct( $message/*, ... */ ) {
91 wfDeprecated( __METHOD__
, '1.17' );
92 $args = func_get_args();
94 $this->mMessage
= wfMessage( $message )->rawParams( $args )->text();
95 $this->mMsgKey
= $message;
96 $this->mMsgArgs
= $args;
99 function getMessageKey() {
100 return $this->mMsgKey
;
103 function getMessageArgs() {
104 return $this->mMsgArgs
;
109 * Error class designed to handle errors involved with
113 class WikiXmlError
extends WikiError
{
115 * @param $parser resource
116 * @param $message string
120 * @deprecated since 1.17
122 function __construct( $parser, $message = 'XML parsing error', $context = null, $offset = 0 ) {
123 wfDeprecated( __METHOD__
, '1.17' );
124 $this->mXmlError
= xml_get_error_code( $parser );
125 $this->mColumn
= xml_get_current_column_number( $parser );
126 $this->mLine
= xml_get_current_line_number( $parser );
127 $this->mByte
= xml_get_current_byte_index( $parser );
128 $this->mContext
= $this->_extractContext( $context, $offset );
129 $this->mMessage
= $message;
130 xml_parser_free( $parser );
131 wfDebug( "WikiXmlError: " . $this->getMessage() . "\n" );
134 /** @return string */
135 function getMessage() {
136 // '$1 at line $2, col $3 (byte $4): $5',
137 return wfMessage( 'xml-error-string',
141 $this->mByte
. $this->mContext
,
142 xml_error_string( $this->mXmlError
) )->escaped();
145 function _extractContext( $context, $offset ) {
146 if( is_null( $context ) ) {
149 // Hopefully integer overflow will be handled transparently here
150 $inlineOffset = $this->mByte
- $offset;
151 return '; "' . substr( $context, $inlineOffset, 16 ) . '"';