1 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
<?php
/**
* Baseclass for simpleSAML Exceptions
*
* This class tries to make sure that every exception is serializable.
*
* @author Thomas Graff <thomas.graff@uninett.no>
* @package simpleSAMLphp_base
*/
class SimpleSAML_Error_Exception extends Exception {
/**
* The backtrace for this exception.
*
* We need to save the backtrace, since we cannot rely on
* serializing the Exception::trace-variable.
*
* @var string
*/
private $backtrace;
/**
* The cause of this exception.
*
* @var SimpleSAML_Error_Exception
*/
private $cause;
/**
* Constructor for this error.
*
* Note that the cause will be converted to a SimpleSAML_Error_UnserializableException
* unless it is a subclass of SimpleSAML_Error_Exception.
*
* @param string $message Exception message
* @param int $code Error code
* @param Exception|NULL $cause The cause of this exception.
*/
public function __construct($message, $code = 0, Exception $cause = NULL) {
assert('is_string($message)');
assert('is_int($code)');
parent::__construct($message, $code);
$this->initBacktrace($this);
if ($cause !== NULL) {
$this->cause = SimpleSAML_Error_Exception::fromException($cause);
}
}
/**
* Convert any exception into a SimpleSAML_Error_Exception.
*
* @param Exception $e The exception.
* @return SimpleSAML_Error_Exception The new exception.
*/
public static function fromException(Exception $e) {
if ($e instanceof SimpleSAML_Error_Exception) {
return $e;
}
return new SimpleSAML_Error_UnserializableException($e);
}
/**
* Load the backtrace from the given exception.
*
* @param Exception $exception The exception we should fetch the backtrace from.
*/
protected function initBacktrace(Exception $exception) {
$this->backtrace = array();
/* Position in the top function on the stack. */
$pos = $exception->getFile() . ':' . $exception->getLine();
foreach($exception->getTrace() as $t) {
$function = $t['function'];
if(array_key_exists('class', $t)) {
$function = $t['class'] . '::' . $function;
}
$this->backtrace[] = $pos . ' (' . $function . ')';
if(array_key_exists('file', $t)) {
$pos = $t['file'] . ':' . $t['line'];
} else {
$pos = '[builtin]';
}
}
$this->backtrace[] = $pos . ' (N/A)';
}
/**
* Retrieve the backtrace.
*
* @return array An array where each function call is a single item.
*/
public function getBacktrace() {
return $this->backtrace;
}
/**
* Retrieve the cause of this exception.
*
* @return SimpleSAML_Error_Exception|NULL The cause of this exception.
*/
public function getCause() {
return $this->cause;
}
/**
* Retrieve the class of this exception.
*
* @return string The classname.
*/
public function getClass() {
return get_class($this);
}
/**
* Format this exception for logging.
*
* Create an array with lines for logging.
*
* @return array Log lines which should be written out.
*/
public function format() {
$ret = array();
$e = $this;
do {
$err = $e->getClass() . ': ' . $e->getMessage();
if ($e === $this) {
$ret[] = $err;
} else {
$ret[] = 'Caused by: ' . $err;
}
$ret[] = 'Backtrace:';
$depth = count($e->backtrace);
foreach ($e->backtrace as $i => $trace) {
$ret[] = ($depth - $i - 1) . ' ' . $trace;
}
$e = $e->cause;
} while ($e !== NULL);
return $ret;
}
/**
* Print the exception to the log with log level error.
*
* This function will write this exception to the log, including a full backtrace.
*/
public function logError() {
$lines = $this->format();
foreach ($lines as $line) {
SimpleSAML_Logger::error($line);
}
}
/**
* Print the exception to the log with log level warning.
*
* This function will write this exception to the log, including a full backtrace.
*/
public function logWarning() {
$lines = $this->format();
foreach ($lines as $line) {
SimpleSAML_Logger::warning($line);
}
}
/**
* Print the exception to the log with log level info.
*
* This function will write this exception to the log, including a full backtrace.
*/
public function logInfo() {
$lines = $this->format();
foreach ($lines as $line) {
SimpleSAML_Logger::debug($line);
}
}
/**
* Print the exception to the log with log level debug.
*
* This function will write this exception to the log, including a full backtrace.
*/
public function logDebug() {
$lines = $this->format();
foreach ($lines as $line) {
SimpleSAML_Logger::debug($line);
}
}
/**
* Function for serialization.
*
* This function builds a list of all variables which should be serialized.
* It will serialize all variables except the Exception::trace variable.
*
* @return array Array with the variables which should be serialized.
*/
public function __sleep() {
$ret = array();
$ret = array_keys((array)$this);
foreach ($ret as $i => $e) {
if ($e === "\0Exception\0trace") {
unset($ret[$i]);
}
}
return $ret;
}
}
?>
|