2009-08-19 05:55:23 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage dev
|
|
|
|
*/
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
class SS_Backtrace {
|
2009-08-19 05:55:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return debug_backtrace() results with functions filtered
|
|
|
|
* specific to the debugging system, and not the trace.
|
|
|
|
*
|
|
|
|
* @param null|array $ignoredFunctions If an array, filter these functions out of the trace
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static function filtered_backtrace($ignoredFunctions = null) {
|
|
|
|
return self::filter_backtrace(debug_backtrace(), $ignoredFunctions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter a backtrace so that it doesn't show the calls to the
|
|
|
|
* debugging system, which is useless information.
|
|
|
|
*
|
|
|
|
* @param array $bt Backtrace to filter
|
|
|
|
* @param null|array $ignoredFunctions List of extra functions to filter out
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static function filter_backtrace($bt, $ignoredFunctions = null) {
|
|
|
|
$defaultIgnoredFunctions = array(
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
'SS_Log::log',
|
|
|
|
'SS_Backtrace::backtrace',
|
|
|
|
'SS_Backtrace::filtered_backtrace',
|
2009-08-19 05:55:23 +02:00
|
|
|
'Zend_Log_Writer_Abstract->write',
|
|
|
|
'Zend_Log->log',
|
|
|
|
'Zend_Log->__call',
|
|
|
|
'Zend_Log->err',
|
|
|
|
'DebugView->writeTrace',
|
|
|
|
'CliDebugView->writeTrace',
|
|
|
|
'Debug::emailError',
|
|
|
|
'Debug::warningHandler',
|
2009-08-19 08:03:57 +02:00
|
|
|
'Debug::noticeHandler',
|
2009-08-19 05:55:23 +02:00
|
|
|
'Debug::fatalHandler',
|
|
|
|
'errorHandler',
|
|
|
|
'Debug::showError',
|
|
|
|
'Debug::backtrace',
|
|
|
|
'exceptionHandler'
|
|
|
|
);
|
|
|
|
|
|
|
|
if($ignoredFunctions) foreach($ignoredFunctions as $ignoredFunction) {
|
|
|
|
$defaultIgnoredFunctions[] = $ignoredFunction;
|
|
|
|
}
|
|
|
|
|
|
|
|
while($bt && in_array(self::full_func_name($bt[0]), $defaultIgnoredFunctions)) {
|
|
|
|
array_shift($bt);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $bt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render or return a backtrace from the given scope.
|
|
|
|
*
|
|
|
|
* @param unknown_type $returnVal
|
|
|
|
* @param unknown_type $ignoreAjax
|
|
|
|
* @return unknown
|
|
|
|
*/
|
|
|
|
static function backtrace($returnVal = false, $ignoreAjax = false, $ignoredFunctions = null) {
|
|
|
|
$plainText = Director::is_cli() || (Director::is_ajax() && !$ignoreAjax);
|
|
|
|
$result = self::get_rendered_backtrace(debug_backtrace(), $plainText, $ignoredFunctions);
|
|
|
|
if($returnVal) {
|
|
|
|
return $result;
|
|
|
|
} else {
|
|
|
|
echo $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the full function name. If showArgs is set to true, a string representation of the arguments will be shown
|
|
|
|
*/
|
|
|
|
static function full_func_name($item, $showArgs = false) {
|
|
|
|
$funcName = '';
|
|
|
|
if(isset($item['class'])) $funcName .= $item['class'];
|
|
|
|
if(isset($item['type'])) $funcName .= $item['type'];
|
|
|
|
if(isset($item['function'])) $funcName .= $item['function'];
|
|
|
|
|
|
|
|
if($showArgs && isset($item['args'])) {
|
|
|
|
$args = array();
|
|
|
|
foreach($item['args'] as $arg) {
|
|
|
|
if(!is_object($arg) || method_exists($arg, '__toString')) {
|
|
|
|
$args[] = (string) $arg;
|
|
|
|
} else {
|
|
|
|
$args[] = get_class($arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$funcName .= "(" . implode(",", $args) .")";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $funcName;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render a backtrace array into an appropriate plain-text or HTML string.
|
|
|
|
*
|
|
|
|
* @param string $bt The trace array, as returned by debug_backtrace() or Exception::getTrace()
|
|
|
|
* @param boolean $plainText Set to false for HTML output, or true for plain-text output
|
|
|
|
* @param array List of functions that should be ignored. If not set, a default is provided
|
|
|
|
* @return string The rendered backtrace
|
|
|
|
*/
|
|
|
|
static function get_rendered_backtrace($bt, $plainText = false, $ignoredFunctions = null) {
|
|
|
|
$bt = self::filter_backtrace($bt, $ignoredFunctions);
|
|
|
|
$result = "<ul>";
|
|
|
|
foreach($bt as $item) {
|
|
|
|
if($plainText) {
|
|
|
|
$result .= self::full_func_name($item,true) . "\n";
|
|
|
|
if(isset($item['line']) && isset($item['file'])) $result .= "line $item[line] of " . basename($item['file']) . "\n";
|
|
|
|
$result .= "\n";
|
|
|
|
} else {
|
|
|
|
if ($item['function'] == 'user_error') {
|
|
|
|
$name = $item['args'][0];
|
|
|
|
} else {
|
|
|
|
$name = self::full_func_name($item,true);
|
|
|
|
}
|
|
|
|
$result .= "<li><b>" . htmlentities($name) . "</b>\n<br />\n";
|
|
|
|
$result .= isset($item['line']) ? "Line $item[line] of " : '';
|
|
|
|
$result .= isset($item['file']) ? htmlentities(basename($item['file'])) : '';
|
|
|
|
$result .= "</li>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$result .= "</ul>";
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|