forked from cosmocode/dokuwiki-plugin-prosemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNodeStack.php
113 lines (99 loc) · 2.25 KB
/
NodeStack.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
namespace dokuwiki\plugin\prosemirror\schema;
class NodeStack
{
/** @var Node[] */
protected $stack = [];
/** @var int index to the top of the stack */
protected $stacklength = -1;
/** @var Node the root node */
protected $doc;
/**
* NodeStack constructor.
*/
public function __construct()
{
$node = new Node('doc');
$this->doc = $node;
$this->top($node);
}
/**
* @return Node
*/
public function getDocNode()
{
return $this->stack[0];
}
/**
* Get the current node (the one at the top of the stack)
*
* @return Node
*/
public function current()
{
return $this->stack[$this->stacklength];
}
/**
* Get the document (top most level) node
*
* @return Node
*/
public function doc()
{
return $this->doc;
}
/**
* Make the given node the current one
*
* @param Node $node
*/
protected function top(Node $node)
{
$this->stack[] = $node;
$this->stacklength++;
}
/**
* Add a new child node to the current node and make it the new current node
*
* @param Node $node
*/
public function addTop(Node $node)
{
$this->add($node);
$this->top($node);
}
/**
* Pop the current node off the stack
*
* @param string $type The type of node that is expected. A RuntimeException is thrown if the current nod does not
* match
*
* @return Node
*/
public function drop($type)
{
/** @var Node $node */
$node = array_pop($this->stack);
$this->stacklength--;
if ($node->getType() != $type) {
throw new \RuntimeException("Expected the current node to be of type $type found " . $node->getType() . " instead.");
}
return $node;
}
/**
* Add a new child node to the current node
*
* @param Node $node
*/
public function add(Node $node)
{
$this->current()->addChild($node);
}
/**
* Check if there have been any nodes added to the document
*/
public function isEmpty()
{
return !$this->doc->hasContent();
}
}