minor #12529 [2.3] Remove possible call_user_func() (nicolas-grekas)

This PR was merged into the 2.3 branch.

Discussion
----------

[2.3] Remove possible call_user_func()

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Merging this in 2.3 enhances performance a bit, but more importantly will ease future merges into 3.0.

Commits
-------

fad7aba [2.3] Remove possible call_user_func()
This commit is contained in:
Fabien Potencier 2014-12-11 19:57:00 +01:00
commit c87a661e83
13 changed files with 30 additions and 22 deletions

View File

@ -105,7 +105,8 @@ class AppKernel extends Kernel
public function unserialize($str)
{
call_user_func_array(array($this, '__construct'), unserialize($str));
$a = unserialize($str);
$this->__construct($a[0], $a[1], $a[2], $a[3]);
}
protected function getKernelParameters()

View File

@ -105,7 +105,8 @@ class AppKernel extends Kernel
public function unserialize($str)
{
call_user_func_array(array($this, '__construct'), unserialize($str));
$a = unserialize($str);
$this->__construct($a[0], $a[1], $a[2], $a[3]);
}
protected function getKernelParameters()

View File

@ -225,8 +225,10 @@ class ExprBuilder
{
foreach ($expressions as $k => $expr) {
if ($expr instanceof ExprBuilder) {
$expressions[$k] = function ($v) use ($expr) {
return call_user_func($expr->ifPart, $v) ? call_user_func($expr->thenPart, $v) : $v;
$if = $expr->ifPart;
$then = $expr->thenPart;
$expressions[$k] = function ($v) use ($if, $then) {
return $if($v) ? $then($v) : $v;
};
}
}

View File

@ -49,7 +49,9 @@ class VariableNode extends BaseNode implements PrototypeNodeInterface
*/
public function getDefaultValue()
{
return $this->defaultValue instanceof \Closure ? call_user_func($this->defaultValue) : $this->defaultValue;
$v = $this->defaultValue;
return $v instanceof \Closure ? $v() : $v;
}
/**

View File

@ -22,6 +22,6 @@ class FileLoaderImportCircularReferenceException extends FileLoaderLoadException
{
$message = sprintf('Circular reference detected in "%s" ("%s" > "%s").', $this->varToString($resources[0]), implode('" > "', $resources), $resources[0]);
call_user_func('Exception::__construct', $message, $code, $previous);
\Exception::__construct($message, $code, $previous);
}
}

View File

@ -248,14 +248,14 @@ class Command
*/
public function execute()
{
if (null === $this->errorHandler) {
if (null === $errorHandler = $this->errorHandler) {
exec($this->join(), $output);
} else {
$process = proc_open($this->join(), array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'), 2 => array('pipe', 'w')), $pipes);
$output = preg_split('~(\r\n|\r|\n)~', stream_get_contents($pipes[1]), -1, PREG_SPLIT_NO_EMPTY);
if ($error = stream_get_contents($pipes[2])) {
call_user_func($this->errorHandler, $error);
$errorHandler($error);
}
proc_close($process);

View File

@ -74,8 +74,8 @@ class TestHttpKernel extends HttpKernel implements ControllerResolverInterface
$response = new Response($this->body, $this->status, $this->headers);
if (null !== $this->customizer) {
call_user_func($this->customizer, $request, $response);
if (null !== $customizer = $this->customizer) {
$customizer($request, $response);
}
return $response;

View File

@ -1102,11 +1102,12 @@ class Process
$result = $this->processPipes->read($blocking);
}
$callback = $this->callback;
foreach ($result as $type => $data) {
if (3 == $type) {
$this->fallbackExitcode = (int) $data;
} else {
call_user_func($this->callback, $type === self::STDOUT ? self::OUT : self::ERR, $data);
$callback($type === self::STDOUT ? self::OUT : self::ERR, $data);
}
}
}

View File

@ -747,7 +747,7 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase
{
$process = $this->getProcess('php -m');
$this->setExpectedException('Symfony\Component\Process\Exception\LogicException', sprintf('Process must be started before calling %s.', $method));
call_user_func(array($process, $method));
$process->{$method}();
}
public function provideMethodsThatNeedARunningProcess()
@ -769,7 +769,7 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase
$process = $this->getProcess('php -r "sleep(1);"');
$process->start();
try {
call_user_func(array($process, $method));
$process->{$method}();
$process->stop(0);
$this->fail('A LogicException must have been thrown');
} catch (\Exception $e) {

View File

@ -37,7 +37,7 @@ class ClosureLoader extends Loader
*/
public function load($closure, $type = null)
{
return call_user_func($closure);
return $closure();
}
/**

View File

@ -43,7 +43,9 @@ class CallbackValidator extends ConstraintValidator
$methods = $constraint->methods;
foreach ($methods as $method) {
if (is_array($method) || $method instanceof \Closure) {
if ($method instanceof \Closure) {
$method($object, $this->context);
} elseif (is_array($method)) {
if (!is_callable($method)) {
throw new ConstraintDefinitionException(sprintf('"%s::%s" targeted by Callback constraint is not a valid callable', $method[0], $method[1]));
}

View File

@ -45,13 +45,12 @@ class ChoiceValidator extends ConstraintValidator
}
if ($constraint->callback) {
if (is_callable(array($this->context->getClassName(), $constraint->callback))) {
$choices = call_user_func(array($this->context->getClassName(), $constraint->callback));
} elseif (is_callable($constraint->callback)) {
$choices = call_user_func($constraint->callback);
} else {
if (!is_callable($choices = array($this->context->getClassName(), $constraint->callback))
&& !is_callable($choices = $constraint->callback)
) {
throw new ConstraintDefinitionException('The Choice constraint expects a valid callback');
}
$choices = call_user_func($choices);
} else {
$choices = $constraint->choices;
}

View File

@ -35,9 +35,9 @@ class TypeValidator extends ConstraintValidator
$isFunction = 'is_'.$type;
$ctypeFunction = 'ctype_'.$type;
if (function_exists($isFunction) && call_user_func($isFunction, $value)) {
if (function_exists($isFunction) && $isFunction($value)) {
return;
} elseif (function_exists($ctypeFunction) && call_user_func($ctypeFunction, $value)) {
} elseif (function_exists($ctypeFunction) && $ctypeFunction($value)) {
return;
} elseif ($value instanceof $constraint->type) {
return;