made a speed optimization to macro calls when imported via the from tag
authorFabien Potencier <fabien.potencier@gmail.com>
Sat, 21 Jan 2012 20:16:34 +0000 (21:16 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 21 Jan 2012 20:18:48 +0000 (21:18 +0100)
CHANGELOG
lib/Twig/ExpressionParser.php
lib/Twig/Node/Expression/MethodCall.php [new file with mode: 0644]
lib/Twig/TokenParser/From.php

index 75cd2e6..5d2ab67 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,6 @@
 * 1.6.0-DEV
 
+ * made a speed optimization to macro calls when imported via the "from" tag
  * added slice notation support for the [] operator (syntactic sugar for the slice operator)
  * added a slice filter
  * added string support for the reverse filter
index ddbdc8f..dfe7f03 100644 (file)
@@ -309,7 +309,7 @@ class Twig_ExpressionParser
                 return new Twig_Node_Expression_GetAttr($args->getNode(0), $args->getNode(1), count($args) > 2 ? $args->getNode(2) : new Twig_Node_Expression_Array(array(), $line), Twig_TemplateInterface::ANY_CALL, $line);
             default:
                 if (null !== $alias = $this->parser->getImportedFunction($name)) {
-                    return new Twig_Node_Expression_GetAttr($alias['node'], new Twig_Node_Expression_Constant($alias['name'], $line), $args, Twig_TemplateInterface::METHOD_CALL, $line);
+                    return new Twig_Node_Expression_MethodCall($alias['node'], $alias['name'], $args, $line);
                 }
 
                 $class = $this->getFunctionNodeClass($name);
diff --git a/lib/Twig/Node/Expression/MethodCall.php b/lib/Twig/Node/Expression/MethodCall.php
new file mode 100644 (file)
index 0000000..19d4e76
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+
+/*
+ * This file is part of Twig.
+ *
+ * (c) 2012 Fabien Potencier
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+class Twig_Node_Expression_MethodCall extends Twig_Node_Expression
+{
+    public function __construct(Twig_Node_Expression $node, $method, Twig_NodeInterface $arguments, $lineno)
+    {
+        parent::__construct(array('node' => $node, 'arguments' => $arguments), array('method' => $method), $lineno);
+    }
+
+    public function compile(Twig_Compiler $compiler)
+    {
+        $compiler
+            ->subcompile($this->getNode('node'))
+            ->raw('->')
+            ->raw($this->getAttribute('method'))
+            ->raw('(')
+        ;
+        $nodes = $this->getNode('arguments');
+        for ($i = 0, $max = count($nodes); $i < $max; $i++) {
+            $compiler->subcompile($nodes->getNode($i));
+
+            if ($i < $max - 1) {
+                $compiler->raw(', ');
+            }
+        }
+        $compiler->raw(')');
+    }
+}
index ba4d7ff..4e20f5c 100644 (file)
@@ -56,7 +56,7 @@ class Twig_TokenParser_From extends Twig_TokenParser
         $node = new Twig_Node_Import($macro, new Twig_Node_Expression_AssignName($this->parser->getVarName(), $token->getLine()), $token->getLine(), $this->getTag());
 
         foreach($targets as $name => $alias) {
-            $this->parser->addImportedFunction($alias, $name, $node->getNode('var'));
+            $this->parser->addImportedFunction($alias, 'get'.$name, $node->getNode('var'));
         }
 
         return $node;