MDL-11082 Improved groups upgrade performance 1.8x -> 1.9; thanks Eloy for telling...
[moodle-pu.git] / lib / htmlpurifier / HTMLPurifier / Strategy / FixNesting.php
blob51a14a78f45f6f32fede1d47b8809bf03ff1f838
1 <?php
3 require_once 'HTMLPurifier/Strategy.php';
4 require_once 'HTMLPurifier/HTMLDefinition.php';
6 /**
7 * Takes a well formed list of tokens and fixes their nesting.
8 *
9 * HTML elements dictate which elements are allowed to be their children,
10 * for example, you can't have a p tag in a span tag. Other elements have
11 * much more rigorous definitions: tables, for instance, require a specific
12 * order for their elements. There are also constraints not expressible by
13 * document type definitions, such as the chameleon nature of ins/del
14 * tags and global child exclusions.
16 * The first major objective of this strategy is to iterate through all the
17 * nodes (not tokens) of the list of tokens and determine whether or not
18 * their children conform to the element's definition. If they do not, the
19 * child definition may optionally supply an amended list of elements that
20 * is valid or require that the entire node be deleted (and the previous
21 * node rescanned).
23 * The second objective is to ensure that explicitly excluded elements of
24 * an element do not appear in its children. Code that accomplishes this
25 * task is pervasive through the strategy, though the two are distinct tasks
26 * and could, theoretically, be seperated (although it's not recommended).
28 * @note Whether or not unrecognized children are silently dropped or
29 * translated into text depends on the child definitions.
31 * @todo Enable nodes to be bubbled out of the structure.
34 class HTMLPurifier_Strategy_FixNesting extends HTMLPurifier_Strategy
37 function execute($tokens, $config, &$context) {
38 //####################################################################//
39 // Pre-processing
41 // get a copy of the HTML definition
42 $definition = $config->getHTMLDefinition();
44 // insert implicit "parent" node, will be removed at end.
45 // DEFINITION CALL
46 $parent_name = $definition->info_parent;
47 array_unshift($tokens, new HTMLPurifier_Token_Start($parent_name));
48 $tokens[] = new HTMLPurifier_Token_End($parent_name);
50 // setup the context variable 'IsInline', for chameleon processing
51 // is 'false' when we are not inline, 'true' when it must always
52 // be inline, and an integer when it is inline for a certain
53 // branch of the document tree
54 $is_inline = $definition->info_parent_def->descendants_are_inline;
55 $context->register('IsInline', $is_inline);
57 // setup error collector
58 $e =& $context->get('ErrorCollector', true);
60 //####################################################################//
61 // Loop initialization
63 // stack that contains the indexes of all parents,
64 // $stack[count($stack)-1] being the current parent
65 $stack = array();
67 // stack that contains all elements that are excluded
68 // it is organized by parent elements, similar to $stack,
69 // but it is only populated when an element with exclusions is
70 // processed, i.e. there won't be empty exclusions.
71 $exclude_stack = array();
73 // variable that contains the start token while we are processing
74 // nodes. This enables error reporting to do its job
75 $start_token = false;
76 $context->register('CurrentToken', $start_token);
78 //####################################################################//
79 // Loop
81 // iterate through all start nodes. Determining the start node
82 // is complicated so it has been omitted from the loop construct
83 for ($i = 0, $size = count($tokens) ; $i < $size; ) {
85 //################################################################//
86 // Gather information on children
88 // child token accumulator
89 $child_tokens = array();
91 // scroll to the end of this node, report number, and collect
92 // all children
93 for ($j = $i, $depth = 0; ; $j++) {
94 if ($tokens[$j]->type == 'start') {
95 $depth++;
96 // skip token assignment on first iteration, this is the
97 // token we currently are on
98 if ($depth == 1) continue;
99 } elseif ($tokens[$j]->type == 'end') {
100 $depth--;
101 // skip token assignment on last iteration, this is the
102 // end token of the token we're currently on
103 if ($depth == 0) break;
105 $child_tokens[] = $tokens[$j];
108 // $i is index of start token
109 // $j is index of end token
111 $start_token = $tokens[$i]; // to make token available via CurrentToken
113 //################################################################//
114 // Gather information on parent
116 // calculate parent information
117 if ($count = count($stack)) {
118 $parent_index = $stack[$count-1];
119 $parent_name = $tokens[$parent_index]->name;
120 if ($parent_index == 0) {
121 $parent_def = $definition->info_parent_def;
122 } else {
123 $parent_def = $definition->info[$parent_name];
125 } else {
126 // processing as if the parent were the "root" node
127 // unknown info, it won't be used anyway, in the future,
128 // we may want to enforce one element only (this is
129 // necessary for HTML Purifier to clean entire documents
130 $parent_index = $parent_name = $parent_def = null;
133 // calculate context
134 if ($is_inline === false) {
135 // check if conditions make it inline
136 if (!empty($parent_def) && $parent_def->descendants_are_inline) {
137 $is_inline = $count - 1;
139 } else {
140 // check if we're out of inline
141 if ($count === $is_inline) {
142 $is_inline = false;
146 //################################################################//
147 // Determine whether element is explicitly excluded SGML-style
149 // determine whether or not element is excluded by checking all
150 // parent exclusions. The array should not be very large, two
151 // elements at most.
152 $excluded = false;
153 if (!empty($exclude_stack)) {
154 foreach ($exclude_stack as $lookup) {
155 if (isset($lookup[$tokens[$i]->name])) {
156 $excluded = true;
157 // no need to continue processing
158 break;
163 //################################################################//
164 // Perform child validation
166 if ($excluded) {
167 // there is an exclusion, remove the entire node
168 $result = false;
169 $excludes = array(); // not used, but good to initialize anyway
170 } else {
171 // DEFINITION CALL
172 if ($i === 0) {
173 // special processing for the first node
174 $def = $definition->info_parent_def;
175 } else {
176 $def = $definition->info[$tokens[$i]->name];
180 if (!empty($def->child)) {
181 // have DTD child def validate children
182 $result = $def->child->validateChildren(
183 $child_tokens, $config, $context);
184 } else {
185 // weird, no child definition, get rid of everything
186 $result = false;
189 // determine whether or not this element has any exclusions
190 $excludes = $def->excludes;
193 // $result is now a bool or array
195 //################################################################//
196 // Process result by interpreting $result
198 if ($result === true) {
199 // leave the node as is
201 // register start token as a parental node start
202 $stack[] = $i;
204 // register exclusions if there are any
205 if (!empty($excludes)) $exclude_stack[] = $excludes;
207 // move cursor to next possible start node
208 $i++;
210 } elseif($result === false) {
211 // remove entire node
213 if ($e) {
214 if ($excluded) {
215 $e->send(E_ERROR, 'Strategy_FixNesting: Node excluded');
216 } else {
217 $e->send(E_ERROR, 'Strategy_FixNesting: Node removed');
221 // calculate length of inner tokens and current tokens
222 $length = $j - $i + 1;
224 // perform removal
225 array_splice($tokens, $i, $length);
227 // update size
228 $size -= $length;
230 // there is no start token to register,
231 // current node is now the next possible start node
232 // unless it turns out that we need to do a double-check
234 // this is a rought heuristic that covers 100% of HTML's
235 // cases and 99% of all other cases. A child definition
236 // that would be tricked by this would be something like:
237 // ( | a b c) where it's all or nothing. Fortunately,
238 // our current implementation claims that that case would
239 // not allow empty, even if it did
240 if (!$parent_def->child->allow_empty) {
241 // we need to do a double-check
242 $i = $parent_index;
243 array_pop($stack);
246 // PROJECTED OPTIMIZATION: Process all children elements before
247 // reprocessing parent node.
249 } else {
250 // replace node with $result
252 // calculate length of inner tokens
253 $length = $j - $i - 1;
255 if ($e) {
256 if (empty($result) && $length) {
257 $e->send(E_ERROR, 'Strategy_FixNesting: Node contents removed');
258 } else {
259 $e->send(E_WARNING, 'Strategy_FixNesting: Node reorganized');
263 // perform replacement
264 array_splice($tokens, $i + 1, $length, $result);
266 // update size
267 $size -= $length;
268 $size += count($result);
270 // register start token as a parental node start
271 $stack[] = $i;
273 // register exclusions if there are any
274 if (!empty($excludes)) $exclude_stack[] = $excludes;
276 // move cursor to next possible start node
277 $i++;
281 //################################################################//
282 // Scroll to next start node
284 // We assume, at this point, that $i is the index of the token
285 // that is the first possible new start point for a node.
287 // Test if the token indeed is a start tag, if not, move forward
288 // and test again.
289 $size = count($tokens);
290 while ($i < $size and $tokens[$i]->type != 'start') {
291 if ($tokens[$i]->type == 'end') {
292 // pop a token index off the stack if we ended a node
293 array_pop($stack);
294 // pop an exclusion lookup off exclusion stack if
295 // we ended node and that node had exclusions
296 if ($i == 0 || $i == $size - 1) {
297 // use specialized var if it's the super-parent
298 $s_excludes = $definition->info_parent_def->excludes;
299 } else {
300 $s_excludes = $definition->info[$tokens[$i]->name]->excludes;
302 if ($s_excludes) {
303 array_pop($exclude_stack);
306 $i++;
311 //####################################################################//
312 // Post-processing
314 // remove implicit parent tokens at the beginning and end
315 array_shift($tokens);
316 array_pop($tokens);
318 // remove context variables
319 $context->destroy('IsInline');
320 $context->destroy('CurrentToken');
322 //####################################################################//
323 // Return
325 return $tokens;