Converts a stream of HTMLPurifier_Token into an HTMLPurifier_Node, and back again.
More...
Static Public Member Functions |
static | arborize ($tokens, $config, $context) |
static | flatten ($node, $config, $context) |
Detailed Description
Converts a stream of HTMLPurifier_Token into an HTMLPurifier_Node, and back again.
- Note
- This transformation is not an equivalence. We mutate the input token stream to make it so; see all [MUT] markers in code.
Definition at line 10 of file Arborize.php.
Member Function Documentation
static HTMLPurifier_Arborize::arborize |
( |
|
$tokens, |
|
|
|
$config, |
|
|
|
$context |
|
) |
| |
|
static |
Definition at line 12 of file Arborize.php.
Referenced by HTMLPurifier_Strategy_FixNesting\execute().
{
$definition = $config->getHTMLDefinition();
$stack = array($parent->toNode());
foreach ($tokens as $token) {
$token->skip = null;
$token->carryover = null;
$token->start = null;
$r = array_pop($stack);
assert($r->name === $token->name);
assert(empty($token->attr));
$r->endCol = $token->col;
$r->endLine = $token->line;
$r->endArmor = $token->armor;
continue;
}
$node = $token->toNode();
$stack[count($stack)-1]->children[] = $node;
$stack[] = $node;
}
}
assert(count($stack) == 1);
return $stack[0];
}
static HTMLPurifier_Arborize::flatten |
( |
|
$node, |
|
|
|
$config, |
|
|
|
$context |
|
) |
| |
|
static |
Definition at line 39 of file Arborize.php.
Referenced by HTMLPurifier_Strategy_FixNesting\execute().
{
$level = 0;
$closingTokens = array();
$tokens = array();
do {
while (!$nodes[$level]->isEmpty()) {
$node = $nodes[$level]->shift();
list($start, $end) = $node->toTokenPair();
if ($level > 0) {
$tokens[] = $start;
}
if ($end !== NULL) {
$closingTokens[$level][] = $end;
}
$level++;
foreach ($node->children as $childNode) {
$nodes[$level]->push($childNode);
}
}
}
$level--;
if ($level && isset($closingTokens[$level])) {
while ($token = array_pop($closingTokens[$level])) {
$tokens[] = $token;
}
}
} while ($level > 0);
return $tokens;
}
The documentation for this class was generated from the following file:
- Services/Html/HtmlPurifier/library/HTMLPurifier/Arborize.php