Exemplo n.º 1
0
 public static function compile(Dwoo_Compiler $compiler, $file)
 {
     list($l, $r) = $compiler->getDelimiters();
     self::$l = preg_quote($l, '/');
     self::$r = preg_quote($r, '/');
     if ($compiler->getLooseOpeningHandling()) {
         self::$l .= '\\s*';
         self::$r = '\\s*' . self::$r;
     }
     $inheritanceTree = array(array('source' => $compiler->getTemplateSource()));
     $curPath = dirname($compiler->getDwoo()->getTemplate()->getResourceIdentifier()) . DIRECTORY_SEPARATOR;
     $curTpl = $compiler->getDwoo()->getTemplate();
     while (!empty($file)) {
         if ($file === '""' || $file === "''" || substr($file, 0, 1) !== '"' && substr($file, 0, 1) !== '\'') {
             throw new Dwoo_Compilation_Exception($compiler, 'Extends : The file name must be a non-empty string');
             return;
         }
         if (preg_match('#^["\']([a-z]{2,}):(.*?)["\']$#i', $file, $m)) {
             // resource:identifier given, extract them
             $resource = $m[1];
             $identifier = $m[2];
         } else {
             // get the current template's resource
             $resource = $curTpl->getResourceName();
             $identifier = substr($file, 1, -1);
         }
         try {
             $parent = $compiler->getDwoo()->templateFactory($resource, $identifier, null, null, null, $curTpl);
         } catch (Dwoo_Security_Exception $e) {
             throw new Dwoo_Compilation_Exception($compiler, 'Extends : Security restriction : ' . $e->getMessage());
         } catch (Dwoo_Exception $e) {
             throw new Dwoo_Compilation_Exception($compiler, 'Extends : ' . $e->getMessage());
         }
         if ($parent === null) {
             throw new Dwoo_Compilation_Exception($compiler, 'Extends : Resource "' . $resource . ':' . $identifier . '" not found.');
         } elseif ($parent === false) {
             throw new Dwoo_Compilation_Exception($compiler, 'Extends : Resource "' . $resource . '" does not support extends.');
         }
         $curTpl = $parent;
         $newParent = array('source' => $parent->getSource(), 'resource' => $resource, 'identifier' => $parent->getResourceIdentifier(), 'uid' => $parent->getUid());
         if (array_search($newParent, $inheritanceTree, true) !== false) {
             throw new Dwoo_Compilation_Exception($compiler, 'Extends : Recursive template inheritance detected');
         }
         $inheritanceTree[] = $newParent;
         if (preg_match('/^' . self::$l . 'extends\\s+(?:file=)?\\s*(\\S+?|(["\']).+?\\2)' . self::$r . '/i', $parent->getSource(), $match)) {
             $curPath = dirname($identifier) . DIRECTORY_SEPARATOR;
             $file = substr($match[1], 0, 1) !== '"' && substr($match[1], 0, 1) !== '"' ? '"' . str_replace('"', '\\"', $match[1]) . '"' : $match[1];
         } else {
             $file = false;
         }
     }
     while (true) {
         $parent = array_pop($inheritanceTree);
         $child = end($inheritanceTree);
         self::$childSource = $child['source'];
         self::$lastReplacement = count($inheritanceTree) === 1;
         if (!isset($newSource)) {
             $newSource = $parent['source'];
         }
         $newSource = preg_replace_callback('/' . self::$l . 'block (["\']?)(.+?)\\1' . self::$r . '(?:\\r?\\n?)(.*?)(?:\\r?\\n?)' . self::$l . '\\/block' . self::$r . '/is', array('Dwoo_Plugin_extends', 'replaceBlock'), $newSource);
         $newSource = $l . 'do extendsCheck("' . $parent['resource'] . ':' . $parent['identifier'] . '" "' . str_replace('"', '\\"', $parent['uid']) . '")' . $r . $newSource;
         if (self::$lastReplacement) {
             break;
         }
     }
     $compiler->setTemplateSource($newSource);
     $compiler->setPointer(0);
 }
Exemplo n.º 2
0
 public function testTemplateSourceGetSet()
 {
     $cmp = new Dwoo_Compiler();
     $this->assertEquals(null, $cmp->getTemplateSource());
     $cmp->setTemplateSource("foobar");
     $cmp->setPointer(3);
     $this->assertEquals('foobar', $cmp->getTemplateSource());
     $this->assertEquals('bar', $cmp->getTemplateSource(true));
     $this->assertEquals('r', $cmp->getTemplateSource(5));
     $cmp->setTemplateSource("baz", true);
     $this->assertEquals('foobaz', $cmp->getTemplateSource());
     $this->assertEquals('baz', $cmp->getTemplateSource(true));
     $this->assertEquals('z', $cmp->getTemplateSource(5));
     $cmp->setTemplateSource("baz");
     $this->assertEquals('baz', $cmp->getTemplateSource());
     $this->assertEquals('', $cmp->getTemplateSource(true));
     $this->assertEquals('az', $cmp->getTemplateSource(1));
 }