-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[VarDumper] Dump PHP+Twig code excerpts in backtraces #15838
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,12 +42,12 @@ class ExceptionCaster | |
|
||
public static function castError(\Error $e, array $a, Stub $stub, $isNested, $filter = 0) | ||
{ | ||
return self::filterExceptionArray($a, "\0Error\0", $filter); | ||
return self::filterExceptionArray($stub->class, $a, "\0Error\0", $filter); | ||
} | ||
|
||
public static function castException(\Exception $e, array $a, Stub $stub, $isNested, $filter = 0) | ||
{ | ||
return self::filterExceptionArray($a, "\0Exception\0", $filter); | ||
return self::filterExceptionArray($stub->class, $a, "\0Exception\0", $filter); | ||
} | ||
|
||
public static function castErrorException(\ErrorException $e, array $a, Stub $stub, $isNested) | ||
|
@@ -64,24 +64,133 @@ public static function castThrowingCasterException(ThrowingCasterException $e, a | |
$prefix = Caster::PREFIX_PROTECTED; | ||
$xPrefix = "\0Exception\0"; | ||
|
||
if (isset($a[$xPrefix.'previous'], $a[$xPrefix.'trace'][0])) { | ||
if (isset($a[$xPrefix.'previous'], $a[$xPrefix.'trace'])) { | ||
$b = (array) $a[$xPrefix.'previous']; | ||
$b[$xPrefix.'trace'][0] += array( | ||
array_unshift($b[$xPrefix.'trace'], array( | ||
'function' => 'new '.get_class($a[$xPrefix.'previous']), | ||
'file' => $b[$prefix.'file'], | ||
'line' => $b[$prefix.'line'], | ||
)); | ||
$a[$xPrefix.'trace'] = new TraceStub($b[$xPrefix.'trace'], 1, false, 0, -1 - count($a[$xPrefix.'trace']->value)); | ||
} | ||
|
||
unset($a[$xPrefix.'previous'], $a[$prefix.'code'], $a[$prefix.'file'], $a[$prefix.'line']); | ||
|
||
return $a; | ||
} | ||
|
||
public static function castTraceStub(TraceStub $trace, array $a, Stub $stub, $isNested) | ||
{ | ||
if (!$isNested) { | ||
return $a; | ||
} | ||
$stub->class = ''; | ||
$stub->handle = 0; | ||
$frames = $trace->value; | ||
|
||
$a = array(); | ||
$j = count($frames); | ||
if (0 > $i = $trace->offset) { | ||
$i = max(0, $j + $i); | ||
} | ||
if (!isset($trace->value[$i])) { | ||
return array(); | ||
} | ||
$lastCall = isset($frames[$i]['function']) ? ' ==> '.(isset($frames[$i]['class']) ? $frames[0]['class'].$frames[$i]['type'] : '').$frames[$i]['function'].'()' : ''; | ||
|
||
for ($j -= $i++; isset($frames[$i]); ++$i, --$j) { | ||
$call = isset($frames[$i]['function']) ? (isset($frames[$i]['class']) ? $frames[$i]['class'].$frames[$i]['type'] : '').$frames[$i]['function'].'()' : '???'; | ||
|
||
$a[Caster::PREFIX_VIRTUAL.$j.'. '.$call.$lastCall] = new FrameStub( | ||
array( | ||
'object' => isset($frames[$i]['object']) ? $frames[$i]['object'] : null, | ||
'class' => isset($frames[$i]['class']) ? $frames[$i]['class'] : null, | ||
'type' => isset($frames[$i]['type']) ? $frames[$i]['type'] : null, | ||
'function' => isset($frames[$i]['function']) ? $frames[$i]['function'] : null, | ||
) + $frames[$i - 1], | ||
$trace->srcContext, | ||
$trace->keepArgs, | ||
true | ||
); | ||
array_splice($b[$xPrefix.'trace'], -1 - count($a[$xPrefix.'trace'])); | ||
static::filterTrace($b[$xPrefix.'trace'], false); | ||
$a[Caster::PREFIX_VIRTUAL.'trace'] = $b[$xPrefix.'trace']; | ||
|
||
$lastCall = ' ==> '.$call; | ||
} | ||
$a[Caster::PREFIX_VIRTUAL.$j.'. {main}'.$lastCall] = new FrameStub( | ||
array( | ||
'object' => null, | ||
'class' => null, | ||
'type' => null, | ||
'function' => '{main}', | ||
) + $frames[$i - 1], | ||
$trace->srcContext, | ||
$trace->keepArgs, | ||
true | ||
); | ||
if (null !== $trace->length) { | ||
$a = array_slice($a, 0, $trace->length, true); | ||
} | ||
|
||
return $a; | ||
} | ||
|
||
unset($a[$xPrefix.'trace'], $a[$xPrefix.'previous'], $a[$prefix.'code'], $a[$prefix.'file'], $a[$prefix.'line']); | ||
public static function castFrameStub(FrameStub $frame, array $a, Stub $stub, $isNested) | ||
{ | ||
if (!$isNested) { | ||
return $a; | ||
} | ||
$f = $frame->value; | ||
$prefix = Caster::PREFIX_VIRTUAL; | ||
|
||
if (isset($f['file'], $f['line'])) { | ||
if (preg_match('/\((\d+)\)(?:\([\da-f]{32}\))? : (?:eval\(\)\'d code|runtime-created function)$/', $f['file'], $match)) { | ||
$f['file'] = substr($f['file'], 0, -strlen($match[0])); | ||
$f['line'] = (int) $match[1]; | ||
} | ||
if (file_exists($f['file']) && 0 <= $frame->srcContext) { | ||
$src[$f['file'].':'.$f['line']] = self::extractSource(explode("\n", file_get_contents($f['file'])), $f['line'], $frame->srcContext); | ||
|
||
if (!empty($f['class']) && is_subclass_of($f['class'], 'Twig_Template') && method_exists($f['class'], 'getDebugInfo')) { | ||
$template = isset($f['object']) ? $f['object'] : new $f['class'](new \Twig_Environment(new \Twig_Loader_Filesystem())); | ||
|
||
try { | ||
$templateName = $template->getTemplateName(); | ||
$templateSrc = explode("\n", method_exists($template, 'getSource') ? $template->getSource() : $template->getEnvironment()->getLoader()->getSource($templateName)); | ||
$templateInfo = $template->getDebugInfo(); | ||
if (isset($templateInfo[$f['line']])) { | ||
$src[$templateName.':'.$templateInfo[$f['line']]] = self::extractSource($templateSrc, $templateInfo[$f['line']], $frame->srcContext); | ||
} | ||
} catch (\Twig_Error_Loader $e) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. once you simplify the code to avoid using a loader finding nothing for older Twig versions, you can get rid of this exception catching btw |
||
} | ||
} | ||
} else { | ||
$src[$f['file']] = $f['line']; | ||
} | ||
$a[$prefix.'src'] = new EnumStub($src); | ||
} | ||
|
||
unset($a[$prefix.'args'], $a[$prefix.'line'], $a[$prefix.'file']); | ||
if ($frame->inTraceStub) { | ||
unset($a[$prefix.'class'], $a[$prefix.'type'], $a[$prefix.'function']); | ||
} | ||
foreach ($a as $k => $v) { | ||
if (!$v) { | ||
unset($a[$k]); | ||
} | ||
} | ||
if ($frame->keepArgs && isset($f['args'])) { | ||
$a[$prefix.'args'] = $f['args']; | ||
} | ||
|
||
return $a; | ||
} | ||
|
||
/** | ||
* @deprecated since 2.8, to be removed in 3.0. Use the castTraceStub method instead. | ||
*/ | ||
public static function filterTrace(&$trace, $dumpArgs, $offset = 0) | ||
{ | ||
@trigger_error('The '.__METHOD__.' method is deprecated since version 2.8 and will be removed in 3.0. Use the castTraceStub method instead.', E_USER_DEPRECATED); | ||
|
||
if (0 > $offset || empty($trace[$offset])) { | ||
return $trace = null; | ||
} | ||
|
@@ -111,7 +220,7 @@ public static function filterTrace(&$trace, $dumpArgs, $offset = 0) | |
} | ||
} | ||
|
||
private static function filterExceptionArray(array $a, $xPrefix, $filter) | ||
private static function filterExceptionArray($xClass, array $a, $xPrefix, $filter) | ||
{ | ||
if (isset($a[$xPrefix.'trace'])) { | ||
$trace = $a[$xPrefix.'trace']; | ||
|
@@ -121,11 +230,12 @@ private static function filterExceptionArray(array $a, $xPrefix, $filter) | |
} | ||
|
||
if (!($filter & Caster::EXCLUDE_VERBOSE)) { | ||
static::filterTrace($trace, static::$traceArgs); | ||
|
||
if (null !== $trace) { | ||
$a[$xPrefix.'trace'] = $trace; | ||
} | ||
array_unshift($trace, array( | ||
'function' => $xClass ? 'new '.$xClass : null, | ||
'file' => $a[Caster::PREFIX_PROTECTED.'file'], | ||
'line' => $a[Caster::PREFIX_PROTECTED.'line'], | ||
)); | ||
$a[$xPrefix.'trace'] = new TraceStub($trace); | ||
} | ||
if (empty($a[$xPrefix.'previous'])) { | ||
unset($a[$xPrefix.'previous']); | ||
|
@@ -134,4 +244,18 @@ private static function filterExceptionArray(array $a, $xPrefix, $filter) | |
|
||
return $a; | ||
} | ||
|
||
private static function extractSource(array $srcArray, $line, $srcContext) | ||
{ | ||
$src = ''; | ||
|
||
for ($i = $line - 1 - $srcContext; $i <= $line - 1 + $srcContext; ++$i) { | ||
$src .= (isset($srcArray[$i]) ? $srcArray[$i] : '')."\n"; | ||
} | ||
if (!$srcContext) { | ||
$src = trim($src); | ||
} | ||
|
||
return $src; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Symfony\Component\VarDumper\Caster; | ||
|
||
/** | ||
* Represents a single backtrace frame as returned by debug_backtrace() or Exception->getTrace(). | ||
* | ||
* @author Nicolas Grekas <[email protected]> | ||
*/ | ||
class FrameStub extends EnumStub | ||
{ | ||
public $srcContext; | ||
public $keepArgs; | ||
public $inTraceStub; | ||
|
||
public function __construct(array $trace, $srcContext = 1, $keepArgs = true, $inTraceStub = false) | ||
{ | ||
$this->value = $trace; | ||
$this->srcContext = $srcContext; | ||
$this->keepArgs = $keepArgs; | ||
$this->inTraceStub = $inTraceStub; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Symfony\Component\VarDumper\Caster; | ||
|
||
use Symfony\Component\VarDumper\Cloner\Stub; | ||
|
||
/** | ||
* Represents a backtrace as returned by debug_backtrace() or Exception->getTrace(). | ||
* | ||
* @author Nicolas Grekas <[email protected]> | ||
*/ | ||
class TraceStub extends Stub | ||
{ | ||
public $srcContext; | ||
public $keepArgs; | ||
public $offset; | ||
public $length; | ||
|
||
public function __construct(array $trace, $srcContext = 1, $keepArgs = true, $offset = 0, $length = null) | ||
{ | ||
$this->value = $trace; | ||
$this->srcContext = $srcContext; | ||
$this->keepArgs = $keepArgs; | ||
$this->offset = $offset; | ||
$this->length = $length; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,6 +170,9 @@ public function testThrowingCaster() | |
{ | ||
$out = fopen('php://memory', 'r+b'); | ||
|
||
require_once __DIR__.'/Fixtures/Twig.php'; | ||
$twig = new \__TwigTemplate_VarDumperFixture_u75a09(new \Twig_Environment(new \Twig_Loader_Filesystem())); | ||
|
||
$dumper = new CliDumper(); | ||
$dumper->setColors(false); | ||
$cloner = new VarCloner(); | ||
|
@@ -181,19 +184,35 @@ public function testThrowingCaster() | |
}, | ||
)); | ||
$cloner->addCasters(array( | ||
':stream' => function () { | ||
throw new \Exception('Foobar'); | ||
}, | ||
':stream' => eval('return function () use ($twig) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we actually need to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, to have a better code coverage, see in frame caster |
||
try { | ||
$twig->render(array()); | ||
} catch (\Twig_Error_Runtime $e) { | ||
throw $e->getPrevious(); | ||
} | ||
};'), | ||
)); | ||
$line = __LINE__ - 3; | ||
$file = __FILE__; | ||
$line = __LINE__ - 2; | ||
$ref = (int) $out; | ||
|
||
$data = $cloner->cloneVar($out); | ||
$dumper->dump($data, $out); | ||
rewind($out); | ||
$out = stream_get_contents($out); | ||
|
||
if (method_exists($twig, 'getSource')) { | ||
$twig = <<<EOTXT | ||
foo.twig:2: """ | ||
foo bar\\n | ||
twig source\\n | ||
\\n | ||
""" | ||
|
||
EOTXT; | ||
} else { | ||
$twig = ''; | ||
} | ||
|
||
$r = defined('HHVM_VERSION') ? '' : '#%d'; | ||
$this->assertStringMatchesFormat( | ||
<<<EOTXT | ||
|
@@ -210,12 +229,53 @@ public function testThrowingCaster() | |
options: [] | ||
⚠: Symfony\Component\VarDumper\Exception\ThrowingCasterException {{$r} | ||
#message: "Unexpected Exception thrown from a caster: Foobar" | ||
trace: array:1 [ | ||
0 => array:2 [ | ||
"call" => "%slosure%s()" | ||
"file" => "{$file}:{$line}" | ||
] | ||
] | ||
-trace: { | ||
%d. __TwigTemplate_VarDumperFixture_u75a09->doDisplay() ==> new Exception(): { | ||
src: { | ||
%sTwig.php:19: """ | ||
// line 2\\n | ||
throw new \Exception('Foobar');\\n | ||
}\\n | ||
""" | ||
{$twig} } | ||
} | ||
%d. Twig_Template->displayWithErrorHandling() ==> __TwigTemplate_VarDumperFixture_u75a09->doDisplay(): { | ||
src: { | ||
%sTemplate.php:%d: """ | ||
try {\\n | ||
\$this->doDisplay(\$context, \$blocks);\\n | ||
} catch (Twig_Error \$e) {\\n | ||
""" | ||
} | ||
} | ||
%d. Twig_Template->display() ==> Twig_Template->displayWithErrorHandling(): { | ||
src: { | ||
%sTemplate.php:%d: """ | ||
{\\n | ||
\$this->displayWithErrorHandling(\$this->env->mergeGlobals(\$context), array_merge(\$this->blocks, \$blocks));\\n | ||
}\\n | ||
""" | ||
} | ||
} | ||
%d. Twig_Template->render() ==> Twig_Template->display(): { | ||
src: { | ||
%sTemplate.php:%d: """ | ||
try {\\n | ||
\$this->display(\$context);\\n | ||
} catch (Exception \$e) {\\n | ||
""" | ||
} | ||
} | ||
%d. %slosure%s() ==> Twig_Template->render(): { | ||
src: { | ||
%sCliDumperTest.php:{$line}: """ | ||
}\\n | ||
};'),\\n | ||
));\\n | ||
""" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why we need a
$stub
here? It does not pass by reference, just set 2 properties and that's all.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Aliance this is modifying an object. So it has an effect
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, well then I'm not understanding smth. Can you answer my question above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mb @nicolas-grekas can help me?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please open an issue, comments on commits are hard to track.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#22583