| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
define('PEAR_ERROR_RETURN', 1); |
|---|
| 32 |
define('PEAR_ERROR_PRINT', 2); |
|---|
| 33 |
define('PEAR_ERROR_TRIGGER', 4); |
|---|
| 34 |
define('PEAR_ERROR_DIE', 8); |
|---|
| 35 |
define('PEAR_ERROR_CALLBACK', 16); |
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
define('PEAR_ERROR_EXCEPTION', 32); |
|---|
| 41 |
|
|---|
| 42 |
define('PEAR_ZE2', (function_exists('version_compare') && |
|---|
| 43 |
version_compare(zend_version(), "2-dev", "ge"))); |
|---|
| 44 |
|
|---|
| 45 |
if (substr(PHP_OS, 0, 3) == 'WIN') { |
|---|
| 46 |
define('OS_WINDOWS', true); |
|---|
| 47 |
define('OS_UNIX', false); |
|---|
| 48 |
define('PEAR_OS', 'Windows'); |
|---|
| 49 |
} else { |
|---|
| 50 |
define('OS_WINDOWS', false); |
|---|
| 51 |
define('OS_UNIX', true); |
|---|
| 52 |
define('PEAR_OS', 'Unix'); |
|---|
| 53 |
} |
|---|
| 54 |
|
|---|
| 55 |
|
|---|
| 56 |
if ( ! defined('PATH_SEPARATOR')) { |
|---|
| 57 |
if (OS_WINDOWS) { |
|---|
| 58 |
define('PATH_SEPARATOR', ';'); |
|---|
| 59 |
} else { |
|---|
| 60 |
define('PATH_SEPARATOR', ':'); |
|---|
| 61 |
} |
|---|
| 62 |
} |
|---|
| 63 |
|
|---|
| 64 |
$GLOBALS['_PEAR_default_error_mode'] = PEAR_ERROR_RETURN; |
|---|
| 65 |
$GLOBALS['_PEAR_default_error_options'] = E_USER_NOTICE; |
|---|
| 66 |
$GLOBALS['_PEAR_destructor_object_list'] = array(); |
|---|
| 67 |
$GLOBALS['_PEAR_shutdown_funcs'] = array(); |
|---|
| 68 |
$GLOBALS['_PEAR_error_handler_stack'] = array(); |
|---|
| 69 |
|
|---|
| 70 |
@ini_set('track_errors', true); |
|---|
| 71 |
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 |
|
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 |
|
|---|
| 81 |
|
|---|
| 82 |
|
|---|
| 83 |
|
|---|
| 84 |
|
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
|
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 |
class PEAR |
|---|
| 103 |
{ |
|---|
| 104 |
|
|---|
| 105 |
|
|---|
| 106 |
/** |
|---|
| 107 |
* Whether to enable internal debug messages. |
|---|
| 108 |
* |
|---|
| 109 |
* @var bool |
|---|
| 110 |
* @access private |
|---|
| 111 |
*/ |
|---|
| 112 |
var $_debug = false; |
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
* Default error mode for this object. |
|---|
| 116 |
* |
|---|
| 117 |
* @var int |
|---|
| 118 |
* @access private |
|---|
| 119 |
*/ |
|---|
| 120 |
var $_default_error_mode = null; |
|---|
| 121 |
|
|---|
| 122 |
|
|---|
| 123 |
* Default error options used for this object when error mode |
|---|
| 124 |
* is PEAR_ERROR_TRIGGER. |
|---|
| 125 |
* |
|---|
| 126 |
* @var int |
|---|
| 127 |
* @access private |
|---|
| 128 |
*/ |
|---|
| 129 |
var $_default_error_options = null; |
|---|
| 130 |
|
|---|
| 131 |
|
|---|
| 132 |
* Default error handler (callback) for this object, if error mode is |
|---|
| 133 |
* PEAR_ERROR_CALLBACK. |
|---|
| 134 |
* |
|---|
| 135 |
* @var string |
|---|
| 136 |
* @access private |
|---|
| 137 |
*/ |
|---|
| 138 |
var $_default_error_handler = ''; |
|---|
| 139 |
|
|---|
| 140 |
|
|---|
| 141 |
* Which class to use for error objects. |
|---|
| 142 |
* |
|---|
| 143 |
* @var string |
|---|
| 144 |
* @access private |
|---|
| 145 |
*/ |
|---|
| 146 |
var $_error_class = 'PEAR_Error'; |
|---|
| 147 |
|
|---|
| 148 |
|
|---|
| 149 |
* An array of expected errors. |
|---|
| 150 |
* |
|---|
| 151 |
* @var array |
|---|
| 152 |
* @access private |
|---|
| 153 |
*/ |
|---|
| 154 |
var $_expected_errors = array(); |
|---|
| 155 |
|
|---|
| 156 |
|
|---|
| 157 |
|
|---|
| 158 |
// {{{ constructor |
|---|
| 159 |
|
|---|
| 160 |
/** |
|---|
| 161 |
* Constructor. Registers this object in |
|---|
| 162 |
* $_PEAR_destructor_object_list for destructor emulation if a |
|---|
| 163 |
* destructor object exists. |
|---|
| 164 |
* |
|---|
| 165 |
* @param string $error_class (optional) which class to use for |
|---|
| 166 |
* error objects, defaults to PEAR_Error. |
|---|
| 167 |
* @access public |
|---|
| 168 |
* @return void |
|---|
| 169 |
*/ |
|---|
| 170 |
function PEAR($error_class = null) |
|---|
| 171 |
{ |
|---|
| 172 |
$classname = strtolower(get_class($this)); |
|---|
| 173 |
if ($this->_debug) { |
|---|
| 174 |
print "PEAR constructor called, class=$classname\n"; |
|---|
| 175 |
} |
|---|
| 176 |
if ($error_class !== null) { |
|---|
| 177 |
$this->_error_class = $error_class; |
|---|
| 178 |
} |
|---|
| 179 |
while ($classname && strcasecmp($classname, "pear")) { |
|---|
| 180 |
$destructor = "_$classname"; |
|---|
| 181 |
if (method_exists($this, $destructor)) { |
|---|
| 182 |
global $_PEAR_destructor_object_list; |
|---|
| 183 |
$_PEAR_destructor_object_list[] = &$this; |
|---|
| 184 |
if ( ! isset($GLOBALS['_PEAR_SHUTDOWN_REGISTERED'])) { |
|---|
| 185 |
register_shutdown_function("_PEAR_call_destructors"); |
|---|
| 186 |
$GLOBALS['_PEAR_SHUTDOWN_REGISTERED'] = true; |
|---|
| 187 |
} |
|---|
| 188 |
break; |
|---|
| 189 |
} else { |
|---|
| 190 |
$classname = get_parent_class($classname); |
|---|
| 191 |
} |
|---|
| 192 |
} |
|---|
| 193 |
} |
|---|
| 194 |
|
|---|
| 195 |
|
|---|
| 196 |
// {{{ destructor |
|---|
| 197 |
|
|---|
| 198 |
/** |
|---|
| 199 |
* Destructor (the emulated type of...). Does nothing right now, |
|---|
| 200 |
* but is included for forward compatibility, so subclass |
|---|
| 201 |
* destructors should always call it. |
|---|
| 202 |
* |
|---|
| 203 |
* See the note in the class desciption about output from |
|---|
| 204 |
* destructors. |
|---|
| 205 |
* |
|---|
| 206 |
* @access public |
|---|
| 207 |
* @return void |
|---|
| 208 |
*/ |
|---|
| 209 |
function _PEAR() { |
|---|
| 210 |
if ($this->_debug) { |
|---|
| 211 |
printf("PEAR destructor called, class=%s\n", strtolower(get_class($this))); |
|---|
| 212 |
} |
|---|
| 213 |
} |
|---|
| 214 |
|
|---|
| 215 |
|
|---|
| 216 |
// {{{ getStaticProperty() |
|---|
| 217 |
|
|---|
| 218 |
/** |
|---|
| 219 |
* If you have a class that's mostly/entirely static, and you need static |
|---|
| 220 |
* properties, you can use this method to simulate them. Eg. in your method(s) |
|---|
| 221 |
* do this: $myVar = &PEAR::getStaticProperty('myclass', 'myVar'); |
|---|
| 222 |
* You MUST use a reference, or they will not persist! |
|---|
| 223 |
* |
|---|
| 224 |
* @access public |
|---|
| 225 |
* @param string $class The calling classname, to prevent clashes |
|---|
| 226 |
* @param string $var The variable to retrieve. |
|---|
| 227 |
* @return mixed A reference to the variable. If not set it will be |
|---|
| 228 |
* auto initialised to NULL. |
|---|
| 229 |
*/ |
|---|
| 230 |
function &getStaticProperty($class, $var) |
|---|
| 231 |
{ |
|---|
| 232 |
static $properties; |
|---|
| 233 |
if ( ! isset($properties[$class])) { |
|---|
| 234 |
$properties[$class] = array(); |
|---|
| 235 |
} |
|---|
| 236 |
if ( ! array_key_exists($var, $properties[$class])) { |
|---|
| 237 |
$properties[$class][$var] = null; |
|---|
| 238 |
} |
|---|
| 239 |
return $properties[$class][$var]; |
|---|
| 240 |
} |
|---|
| 241 |
|
|---|
| 242 |
|
|---|
| 243 |
// {{{ registerShutdownFunc() |
|---|
| 244 |
|
|---|
| 245 |
/** |
|---|
| 246 |
* Use this function to register a shutdown method for static |
|---|
| 247 |
* classes. |
|---|
| 248 |
* |
|---|
| 249 |
* @access public |
|---|
| 250 |
* @param mixed $func The function name (or array of class/method) to call |
|---|
| 251 |
* @param mixed $args The arguments to pass to the function |
|---|
| 252 |
* @return void |
|---|
| 253 |
*/ |
|---|
| 254 |
function registerShutdownFunc($func, $args = array()) |
|---|
| 255 |
{ |
|---|
| 256 |
|
|---|
| 257 |
// that no shutdown func is registered. Bug #6445 |
|---|
| 258 |
if ( ! isset($GLOBALS['_PEAR_SHUTDOWN_REGISTERED'])) { |
|---|
| 259 |
register_shutdown_function("_PEAR_call_destructors"); |
|---|
| 260 |
$GLOBALS['_PEAR_SHUTDOWN_REGISTERED'] = true; |
|---|
| 261 |
} |
|---|
| 262 |
$GLOBALS['_PEAR_shutdown_funcs'][] = array($func, $args); |
|---|
| 263 |
} |
|---|
| 264 |
|
|---|
| 265 |
|
|---|
| 266 |
// {{{ isError() |
|---|
| 267 |
|
|---|
| 268 |
/** |
|---|
| 269 |
* Tell whether a value is a PEAR error. |
|---|
| 270 |
* |
|---|
| 271 |
* @param mixed $data the value to test |
|---|
| 272 |
* @param int $code if $data is an error object, return true |
|---|
| 273 |
* only if $code is a string and |
|---|
| 274 |
* $obj->getMessage() == $code or |
|---|
| 275 |
* $code is an integer and $obj->getCode() == $code |
|---|
| 276 |
* @access public |
|---|
| 277 |
* @return bool true if parameter is an error |
|---|
| 278 |
*/ |
|---|
| 279 |
function isError($data, $code = null) |
|---|
| 280 |
{ |
|---|
| 281 |
if (is_a($data, 'PEAR_Error')) { |
|---|
| 282 |
if (is_null($code)) { |
|---|
| 283 |
return true; |
|---|
| 284 |
} elseif (is_string($code)) { |
|---|
| 285 |
return $data->getMessage() == $code; |
|---|
| 286 |
} else { |
|---|
| 287 |
return $data->getCode() == $code; |
|---|
| 288 |
} |
|---|
| 289 |
} |
|---|
| 290 |
return false; |
|---|
| 291 |
} |
|---|
| 292 |
|
|---|
| 293 |
|
|---|
| 294 |
// {{{ setErrorHandling() |
|---|
| 295 |
|
|---|
| 296 |
/** |
|---|
| 297 |
* Sets how errors generated by this object should be handled. |
|---|
| 298 |
* Can be invoked both in objects and statically. If called |
|---|
| 299 |
* statically, setErrorHandling sets the default behaviour for all |
|---|
| 300 |
* PEAR objects. If called in an object, setErrorHandling sets |
|---|
| 301 |
* the default behaviour for that object. |
|---|
| 302 |
* |
|---|
| 303 |
* @param int $mode |
|---|
| 304 |
* One of PEAR_ERROR_RETURN, PEAR_ERROR_PRINT, |
|---|
| 305 |
* PEAR_ERROR_TRIGGER, PEAR_ERROR_DIE, |
|---|
| 306 |
* PEAR_ERROR_CALLBACK or PEAR_ERROR_EXCEPTION. |
|---|
| 307 |
* |
|---|
| 308 |
* @param mixed $options |
|---|
| 309 |
* When $mode is PEAR_ERROR_TRIGGER, this is the error level (one |
|---|
| 310 |
* of E_USER_NOTICE, E_USER_WARNING or E_USER_ERROR). |
|---|
| 311 |
* |
|---|
| 312 |
* When $mode is PEAR_ERROR_CALLBACK, this parameter is expected |
|---|
| 313 |
* to be the callback function or method. A callback |
|---|
| 314 |
* function is a string with the name of the function, a |
|---|
| 315 |
* callback method is an array of two elements: the element |
|---|
| 316 |
* at index 0 is the object, and the element at index 1 is |
|---|
| 317 |
* the name of the method to call in the object. |
|---|
| 318 |
* |
|---|
| 319 |
* When $mode is PEAR_ERROR_PRINT or PEAR_ERROR_DIE, this is |
|---|
| 320 |
* a printf format string used when printing the error |
|---|
| 321 |
* message. |
|---|
| 322 |
* |
|---|
| 323 |
* @access public |
|---|
| 324 |
* @return void |
|---|
| 325 |
* @see PEAR_ERROR_RETURN |
|---|
| 326 |
* @see PEAR_ERROR_PRINT |
|---|
| 327 |
* @see PEAR_ERROR_TRIGGER |
|---|
| 328 |
* @see PEAR_ERROR_DIE |
|---|
| 329 |
* @see PEAR_ERROR_CALLBACK |
|---|
| 330 |
* @see PEAR_ERROR_EXCEPTION |
|---|
| 331 |
* |
|---|
| 332 |
* @since PHP 4.0.5 |
|---|
| 333 |
*/ |
|---|
| 334 |
|
|---|
| 335 |
function setErrorHandling($mode = null, $options = null) |
|---|
| 336 |
{ |
|---|
| 337 |
if (isset($this) && is_a($this, 'PEAR')) { |
|---|
| 338 |
$setmode = &$this->_default_error_mode; |
|---|
| 339 |
$setoptions = &$this->_default_error_options; |
|---|
| 340 |
} else { |
|---|
| 341 |
$setmode = &$GLOBALS['_PEAR_default_error_mode']; |
|---|
| 342 |
$setoptions = &$GLOBALS['_PEAR_default_error_options']; |
|---|
| 343 |
} |
|---|
| 344 |
|
|---|
| 345 |
switch ($mode) { |
|---|
| 346 |
case PEAR_ERROR_EXCEPTION: |
|---|
| 347 |
case PEAR_ERROR_RETURN: |
|---|
| 348 |
case PEAR_ERROR_PRINT: |
|---|
| 349 |
case PEAR_ERROR_TRIGGER: |
|---|
| 350 |
case PEAR_ERROR_DIE: |
|---|
| 351 |
case null: |
|---|
| 352 |
$setmode = $mode; |
|---|
| 353 |
$setoptions = $options; |
|---|
| 354 |
break; |
|---|
| 355 |
|
|---|
| 356 |
case PEAR_ERROR_CALLBACK: |
|---|
| 357 |
$setmode = $mode; |
|---|
| 358 |
|
|---|
| 359 |
if (is_callable($options)) { |
|---|
| 360 |
$setoptions = $options; |
|---|
| 361 |
} else { |
|---|
| 362 |
trigger_error("invalid error callback", E_USER_WARNING); |
|---|
| 363 |
} |
|---|
| 364 |
break; |
|---|
| 365 |
|
|---|
| 366 |
default: |
|---|
| 367 |
trigger_error("invalid error mode", E_USER_WARNING); |
|---|
| 368 |
break; |
|---|
| 369 |
} |
|---|
| 370 |
} |
|---|
| 371 |
|
|---|
| 372 |
|
|---|
| 373 |
// {{{ expectError() |
|---|
| 374 |
|
|---|
| 375 |
/** |
|---|
| 376 |
* This method is used to tell which errors you expect to get. |
|---|
| 377 |
* Expected errors are always returned with error mode |
|---|
| 378 |
* PEAR_ERROR_RETURN. Expected error codes are stored in a stack, |
|---|
| 379 |
* and this method pushes a new element onto it. The list of |
|---|
| 380 |
* expected errors are in effect until they are popped off the |
|---|
| 381 |
* stack with the popExpect() method. |
|---|
| 382 |
* |
|---|
| 383 |
* Note that this method can not be called statically |
|---|
| 384 |
* |
|---|
| 385 |
* @param mixed $code a single error code or an array of error codes to expect |
|---|
| 386 |
* |
|---|
| 387 |
* @return int the new depth of the "expected errors" stack |
|---|
| 388 |
* @access public |
|---|
| 389 |
*/ |
|---|
| 390 |
function expectError($code = '*') |
|---|
| 391 |
{ |
|---|
| 392 |
if (is_array($code)) { |
|---|
| 393 |
array_push($this->_expected_errors, $code); |
|---|
| 394 |
} else { |
|---|
| 395 |
array_push($this->_expected_errors, array($code)); |
|---|
| 396 |
} |
|---|
| 397 |
return sizeof($this->_expected_errors); |
|---|
| 398 |
} |
|---|
| 399 |
|
|---|
| 400 |
|
|---|
| 401 |
// {{{ popExpect() |
|---|
| 402 |
|
|---|
| 403 |
/** |
|---|
| 404 |
* This method pops one element off the expected error codes |
|---|
| 405 |
* stack. |
|---|
| 406 |
* |
|---|
| 407 |
* @return array the list of error codes that were popped |
|---|
| 408 |
*/ |
|---|
| 409 |
function popExpect() |
|---|
| 410 |
{ |
|---|
| 411 |
return array_pop($this->_expected_errors); |
|---|
| 412 |
} |
|---|
| 413 |
|
|---|
| 414 |
|
|---|
| 415 |
// {{{ _checkDelExpect() |
|---|
| 416 |
|
|---|
| 417 |
/** |
|---|
| 418 |
* This method checks unsets an error code if available |
|---|
| 419 |
* |
|---|
| 420 |
* @param mixed error code |
|---|
| 421 |
* @return bool true if the error code was unset, false otherwise |
|---|
| 422 |
* @access private |
|---|
| 423 |
* @since PHP 4.3.0 |
|---|
| 424 |
*/ |
|---|
| 425 |
function _checkDelExpect($error_code) |
|---|
| 426 |
{ |
|---|
| 427 |
$deleted = false; |
|---|
| 428 |
|
|---|
| 429 |
foreach ($this->_expected_errors AS $key => $error_array) { |
|---|
| 430 |
if (in_array($error_code, $error_array)) { |
|---|
| 431 |
unset($this->_expected_errors[$key][array_search($error_code, $error_array)]); |
|---|
| 432 |
$deleted = true; |
|---|
| 433 |
} |
|---|
| 434 |
|
|---|
| 435 |
|
|---|
| 436 |
if (0 == count($this->_expected_errors[$key])) { |
|---|
| 437 |
unset($this->_expected_errors[$key]); |
|---|
| 438 |
} |
|---|
| 439 |
} |
|---|
| 440 |
return $deleted; |
|---|
| 441 |
} |
|---|
| 442 |
|
|---|
| 443 |
|
|---|
| 444 |
// {{{ delExpect() |
|---|
| 445 |
|
|---|
| 446 |
/** |
|---|
| 447 |
* This method deletes all occurences of the specified element from |
|---|
| 448 |
* the expected error codes stack. |
|---|
| 449 |
* |
|---|
| 450 |
* @param mixed $error_code error code that should be deleted |
|---|
| 451 |
* @return mixed list of error codes that were deleted or error |
|---|
| 452 |
* @access public |
|---|
| 453 |
* @since PHP 4.3.0 |
|---|
| 454 |
*/ |
|---|
| 455 |
function delExpect($error_code) |
|---|
| 456 |
{ |
|---|
| 457 |
$deleted = false; |
|---|
| 458 |
|
|---|
| 459 |
if ((is_array($error_code) && (0 != count($error_code)))) { |
|---|
| 460 |
|
|---|
| 461 |
// we walk through it trying to unset all |
|---|
| 462 |
// values |
|---|
| 463 |
foreach($error_code as $key => $error) { |
|---|
| 464 |
if ($this->_checkDelExpect($error)) { |
|---|
| 465 |
$deleted = true; |
|---|
| 466 |
} else { |
|---|
| 467 |
$deleted = false; |
|---|
| 468 |
} |
|---|
| 469 |
} |
|---|
| 470 |
return $deleted ? true : PEAR::raiseError("The expected error you submitted does not exist"); |
|---|
| 471 |
} elseif ( ! empty($error_code)) { |
|---|
| 472 |
|
|---|
| 473 |
if ($this->_checkDelExpect($error_code)) { |
|---|
| 474 |
return true; |
|---|
| 475 |
} else { |
|---|
| 476 |
return PEAR::raiseError("The expected error you submitted does not exist"); |
|---|
| 477 |
} |
|---|
| 478 |
} else { |
|---|
| 479 |
|
|---|
| 480 |
return PEAR::raiseError("The expected error you submitted is empty"); |
|---|
| 481 |
} |
|---|
| 482 |
} |
|---|
| 483 |
|
|---|
| 484 |
|
|---|
| 485 |
// {{{ raiseError() |
|---|
| 486 |
|
|---|
| 487 |
/** |
|---|
| 488 |
* This method is a wrapper that returns an instance of the |
|---|
| 489 |
* configured error class with this object's default error |
|---|
| 490 |
* handling applied. If the $mode and $options parameters are not |
|---|
| 491 |
* specified, the object's defaults are used. |
|---|
| 492 |
* |
|---|
| 493 |
* @param mixed $message a text error message or a PEAR error object |
|---|
| 494 |
* |
|---|
| 495 |
* @param int $code a numeric error code (it is up to your class |
|---|
| 496 |
* to define these if you want to use codes) |
|---|
| 497 |
* |
|---|
| 498 |
* @param int $mode One of PEAR_ERROR_RETURN, PEAR_ERROR_PRINT, |
|---|
| 499 |
* PEAR_ERROR_TRIGGER, PEAR_ERROR_DIE, |
|---|
| 500 |
* PEAR_ERROR_CALLBACK, PEAR_ERROR_EXCEPTION. |
|---|
| 501 |
* |
|---|
| 502 |
* @param mixed $options If $mode is PEAR_ERROR_TRIGGER, this parameter |
|---|
| 503 |
* specifies the PHP-internal error level (one of |
|---|
| 504 |
* E_USER_NOTICE, E_USER_WARNING or E_USER_ERROR). |
|---|
| 505 |
* If $mode is PEAR_ERROR_CALLBACK, this |
|---|
| 506 |
* parameter specifies the callback function or |
|---|
| 507 |
* method. In other error modes this parameter |
|---|
| 508 |
* is ignored. |
|---|
| 509 |
* |
|---|
| 510 |
* @param string $userinfo If you need to pass along for example debug |
|---|
| 511 |
* information, this parameter is meant for that. |
|---|
| 512 |
* |
|---|
| 513 |
* @param string $error_class The returned error object will be |
|---|
| 514 |
* instantiated from this class, if specified. |
|---|
| 515 |
* |
|---|
| 516 |
* @param bool $skipmsg If true, raiseError will only pass error codes, |
|---|
| 517 |
* the error message parameter will be dropped. |
|---|
| 518 |
* |
|---|
| 519 |
* @access public |
|---|
| 520 |
* @return object a PEAR error object |
|---|
| 521 |
* @see PEAR::setErrorHandling |
|---|
| 522 |
* @since PHP 4.0.5 |
|---|
| 523 |
*/ |
|---|
| 524 |
function &raiseError($message = null, |
|---|
| 525 |
$code = null, |
|---|
| 526 |
$mode = null, |
|---|
| 527 |
$options = null, |
|---|
| 528 |
$userinfo = null, |
|---|
| 529 |
$error_class = null, |
|---|
| 530 |
$skipmsg = false) |
|---|
| 531 |
{ |
|---|
| 532 |
|
|---|
| 533 |
if (is_object($message)) { |
|---|
| 534 |
$code = $message->getCode(); |
|---|
| 535 |
$userinfo = $message->getUserInfo(); |
|---|
| 536 |
$error_class = $message->getType(); |
|---|
| 537 |
$message->error_message_prefix = ''; |
|---|
| 538 |
$message = $message->getMessage(); |
|---|
| 539 |
} |
|---|
| 540 |
|
|---|
| 541 |
if (isset($this) && isset($this->_expected_errors) && sizeof($this->_expected_errors) > 0 && sizeof($exp = end($this->_expected_errors))) { |
|---|
| 542 |
if ($exp[0] == "*" || |
|---|
| 543 |
(is_int(reset($exp)) && in_array($code, $exp)) || |
|---|
| 544 |
(is_string(reset($exp)) && in_array($message, $exp))) { |
|---|
| 545 |
$mode = PEAR_ERROR_RETURN; |
|---|
| 546 |
} |
|---|
| 547 |
} |
|---|
| 548 |
|
|---|
| 549 |
if ($mode === null) { |
|---|
| 550 |
|
|---|
| 551 |
if (isset($this) && isset($this->_default_error_mode)) { |
|---|
| 552 |
$mode = $this->_default_error_mode; |
|---|
| 553 |
$options = $this->_default_error_options; |
|---|
| 554 |
|
|---|
| 555 |
} elseif (isset($GLOBALS['_PEAR_default_error_mode'])) { |
|---|
| 556 |
$mode = $GLOBALS['_PEAR_default_error_mode']; |
|---|
| 557 |
$options = $GLOBALS['_PEAR_default_error_options']; |
|---|
| 558 |
} |
|---|
| 559 |
} |
|---|
| 560 |
|
|---|
| 561 |
if ($error_class !== null) { |
|---|
| 562 |
$ec = $error_class; |
|---|
| 563 |
} elseif (isset($this) && isset($this->_error_class)) { |
|---|
| 564 |
$ec = $this->_error_class; |
|---|
| 565 |
} else { |
|---|
| 566 |
$ec = 'PEAR_Error'; |
|---|
| 567 |
} |
|---|
| 568 |
if ($skipmsg) { |
|---|
| 569 |
$a = &new $ec($code, $mode, $options, $userinfo); |
|---|
| 570 |
return $a; |
|---|
| 571 |
} else { |
|---|
| 572 |
$a = &new $ec($message, $code, $mode, $options, $userinfo); |
|---|
| 573 |
return $a; |
|---|
| 574 |
} |
|---|
| 575 |
} |
|---|
| 576 |
|
|---|
| 577 |
|
|---|
| 578 |
// {{{ throwError() |
|---|
| 579 |
|
|---|
| 580 |
/** |
|---|
| 581 |
* Simpler form of raiseError with fewer options. In most cases |
|---|
| 582 |
* message, code and userinfo are enough. |
|---|
| 583 |
* |
|---|
| 584 |
* @param string $message |
|---|
| 585 |
* |
|---|
| 586 |
*/ |
|---|
| 587 |
function &throwError($message = null, |
|---|
| 588 |
$code = null, |
|---|
| 589 |
$userinfo = null) |
|---|
| 590 |
{ |
|---|
| 591 |
if (isset($this) && is_a($this, 'PEAR')) { |
|---|
| 592 |
$a = &$this->raiseError($message, $code, null, null, $userinfo); |
|---|
| 593 |
return $a; |
|---|
| 594 |
} else { |
|---|
| 595 |
$a = &PEAR::raiseError($message, $code, null, null, $userinfo); |
|---|
| 596 |
return $a; |
|---|
| 597 |
} |
|---|
| 598 |
} |
|---|
| 599 |
|
|---|
| 600 |
|
|---|
| 601 |
function staticPushErrorHandling($mode, $options = null) |
|---|
| 602 |
{ |
|---|
| 603 |
$stack = &$GLOBALS['_PEAR_error_handler_stack']; |
|---|
| 604 |
$def_mode = &$GLOBALS['_PEAR_default_error_mode']; |
|---|
| 605 |
$def_options = &$GLOBALS['_PEAR_default_error_options']; |
|---|
| 606 |
$stack[] = array($def_mode, $def_options); |
|---|
| 607 |
switch ($mode) { |
|---|
| 608 |
case PEAR_ERROR_EXCEPTION: |
|---|
| 609 |
case PEAR_ERROR_RETURN: |
|---|
| 610 |
case PEAR_ERROR_PRINT: |
|---|
| 611 |
case PEAR_ERROR_TRIGGER: |
|---|
| 612 |
case PEAR_ERROR_DIE: |
|---|
| 613 |
case null: |
|---|
| 614 |
$def_mode = $mode; |
|---|
| 615 |
$def_options = $options; |
|---|
| 616 |
break; |
|---|
| 617 |
|
|---|
| 618 |
case PEAR_ERROR_CALLBACK: |
|---|
| 619 |
$def_mode |
|---|