Version 1
[yaffs-website] / vendor / psy / psysh / src / Psy / CodeCleaner / NamespacePass.php
1 <?php
2
3 /*
4  * This file is part of Psy Shell.
5  *
6  * (c) 2012-2017 Justin Hileman
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Psy\CodeCleaner;
13
14 use PhpParser\Node\Name;
15 use PhpParser\Node\Stmt\Namespace_ as NamespaceStmt;
16 use Psy\CodeCleaner;
17
18 /**
19  * Provide implicit namespaces for subsequent execution.
20  *
21  * The namespace pass remembers the last standalone namespace line encountered:
22  *
23  *     namespace Foo\Bar;
24  *
25  * ... which it then applies implicitly to all future evaluated code, until the
26  * namespace is replaced by another namespace. To reset to the top level
27  * namespace, enter `namespace {}`. This is a bit ugly, but it does the trick :)
28  */
29 class NamespacePass extends CodeCleanerPass
30 {
31     private $namespace = null;
32     private $cleaner;
33
34     /**
35      * @param CodeCleaner $cleaner
36      */
37     public function __construct(CodeCleaner $cleaner)
38     {
39         $this->cleaner = $cleaner;
40     }
41
42     /**
43      * If this is a standalone namespace line, remember it for later.
44      *
45      * Otherwise, apply remembered namespaces to the code until a new namespace
46      * is encountered.
47      *
48      * @param array $nodes
49      */
50     public function beforeTraverse(array $nodes)
51     {
52         $first = reset($nodes);
53         if (count($nodes) === 1 && $first instanceof NamespaceStmt && empty($first->stmts)) {
54             $this->setNamespace($first->name);
55         } else {
56             foreach ($nodes as $key => $node) {
57                 if ($node instanceof NamespaceStmt) {
58                     $this->setNamespace(null);
59                 } elseif ($this->namespace !== null) {
60                     $nodes[$key] = new NamespaceStmt($this->namespace, array($node));
61                 }
62             }
63         }
64
65         return $nodes;
66     }
67
68     /**
69      * Remember the namespace and (re)set the namespace on the CodeCleaner as
70      * well.
71      *
72      * @param null|Name $namespace
73      */
74     private function setNamespace($namespace)
75     {
76         $this->namespace = $namespace;
77         $this->cleaner->setNamespace($namespace === null ? null : $namespace->parts);
78     }
79 }