Polish translation was updated.
[elinks.git] / src / dom / select.c
blobb7b7e59977adae009e9a486e3987f925e3a2df1b
1 /* DOM node selection */
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
7 #include "elinks.h"
9 #include "dom/css/scanner.h"
10 #include "dom/code.h"
11 #include "dom/node.h"
12 #include "dom/scanner.h"
13 #include "dom/select.h"
14 #include "dom/stack.h"
15 #include "dom/string.h"
16 #include "util/memory.h"
19 /* Selector parsing: */
21 /* Maps the content of a scanner token to a pseudo-class or -element ID. */
22 static enum dom_select_pseudo
23 get_dom_select_pseudo(struct dom_scanner_token *token)
25 static struct {
26 struct dom_string string;
27 enum dom_select_pseudo pseudo;
28 } pseudo_info[] = {
30 #define INIT_DOM_SELECT_PSEUDO_STRING(str, type) \
31 { STATIC_DOM_STRING(str), DOM_SELECT_PSEUDO_##type }
33 INIT_DOM_SELECT_PSEUDO_STRING("first-line", FIRST_LINE),
34 INIT_DOM_SELECT_PSEUDO_STRING("first-letter", FIRST_LETTER),
35 INIT_DOM_SELECT_PSEUDO_STRING("selection", SELECTION),
36 INIT_DOM_SELECT_PSEUDO_STRING("after", AFTER),
37 INIT_DOM_SELECT_PSEUDO_STRING("before", BEFORE),
38 INIT_DOM_SELECT_PSEUDO_STRING("link", LINK),
39 INIT_DOM_SELECT_PSEUDO_STRING("visited", VISITED),
40 INIT_DOM_SELECT_PSEUDO_STRING("active", ACTIVE),
41 INIT_DOM_SELECT_PSEUDO_STRING("hover", HOVER),
42 INIT_DOM_SELECT_PSEUDO_STRING("focus", FOCUS),
43 INIT_DOM_SELECT_PSEUDO_STRING("target", TARGET),
44 INIT_DOM_SELECT_PSEUDO_STRING("enabled", ENABLED),
45 INIT_DOM_SELECT_PSEUDO_STRING("disabled", DISABLED),
46 INIT_DOM_SELECT_PSEUDO_STRING("checked", CHECKED),
47 INIT_DOM_SELECT_PSEUDO_STRING("indeterminate", INDETERMINATE),
49 /* Content pseudo-classes: */
51 INIT_DOM_SELECT_PSEUDO_STRING("contains", CONTAINS),
53 /* Structural pseudo-classes: */
55 INIT_DOM_SELECT_PSEUDO_STRING("nth-child", NTH_CHILD),
56 INIT_DOM_SELECT_PSEUDO_STRING("nth-last-child", NTH_LAST_CHILD),
57 INIT_DOM_SELECT_PSEUDO_STRING("first-child", FIRST_CHILD),
58 INIT_DOM_SELECT_PSEUDO_STRING("last-child", LAST_CHILD),
59 INIT_DOM_SELECT_PSEUDO_STRING("only-child", ONLY_CHILD),
61 INIT_DOM_SELECT_PSEUDO_STRING("nth-of-type", NTH_TYPE),
62 INIT_DOM_SELECT_PSEUDO_STRING("nth-last-of-type",NTH_LAST_TYPE),
63 INIT_DOM_SELECT_PSEUDO_STRING("first-of-type", FIRST_TYPE),
64 INIT_DOM_SELECT_PSEUDO_STRING("last-of-type", LAST_TYPE),
65 INIT_DOM_SELECT_PSEUDO_STRING("only-of-type", ONLY_TYPE),
67 INIT_DOM_SELECT_PSEUDO_STRING("root", ROOT),
68 INIT_DOM_SELECT_PSEUDO_STRING("empty", EMPTY),
70 #undef INIT_DOM_SELECT_PSEUDO_STRING
73 int i;
75 for (i = 0; i < sizeof_array(pseudo_info); i++)
76 if (!dom_string_casecmp(&pseudo_info[i].string, &token->string))
77 return pseudo_info[i].pseudo;
79 return DOM_SELECT_PSEUDO_UNKNOWN;
82 /* Parses attribute selector. For example '[foo="bar"]' or '[foo|="boo"]'. */
83 static enum dom_code
84 parse_dom_select_attribute(struct dom_select_node *sel, struct dom_scanner *scanner)
86 struct dom_scanner_token *token = get_dom_scanner_token(scanner);
88 /* Get '['. */
90 if (token->type != '[')
91 return DOM_CODE_SYNTAX_ERR;
93 /* Get the attribute name. */
95 token = get_next_dom_scanner_token(scanner);
96 if (!token || token->type != CSS_TOKEN_IDENT)
97 return DOM_CODE_SYNTAX_ERR;
99 copy_dom_string(&sel->node.string, &token->string);
101 /* Get the optional '=' combo or ending ']'. */
103 token = get_next_dom_scanner_token(scanner);
104 if (!token) return DOM_CODE_SYNTAX_ERR;
106 switch (token->type) {
107 case ']':
108 sel->match.attribute |= DOM_SELECT_ATTRIBUTE_ANY;
109 return DOM_CODE_OK;
111 case CSS_TOKEN_SELECT_SPACE_LIST:
112 sel->match.attribute |= DOM_SELECT_ATTRIBUTE_SPACE_LIST;
113 break;
115 case CSS_TOKEN_SELECT_HYPHEN_LIST:
116 sel->match.attribute |= DOM_SELECT_ATTRIBUTE_HYPHEN_LIST;
117 break;
119 case CSS_TOKEN_SELECT_BEGIN:
120 sel->match.attribute |= DOM_SELECT_ATTRIBUTE_BEGIN;
121 break;
123 case CSS_TOKEN_SELECT_END:
124 sel->match.attribute |= DOM_SELECT_ATTRIBUTE_END;
125 break;
127 case CSS_TOKEN_SELECT_CONTAINS:
128 sel->match.attribute |= DOM_SELECT_ATTRIBUTE_CONTAINS;
129 break;
131 default:
132 return DOM_CODE_SYNTAX_ERR;
135 /* Get the required value. */
137 token = get_next_dom_scanner_token(scanner);
138 if (!token) return DOM_CODE_SYNTAX_ERR;
140 switch (token->type) {
141 case CSS_TOKEN_IDENT:
142 case CSS_TOKEN_STRING:
143 copy_dom_string(&sel->node.data.attribute.value, &token->string);
144 break;
146 default:
147 return DOM_CODE_SYNTAX_ERR;
150 /* Get the ending ']'. */
152 token = get_next_dom_scanner_token(scanner);
153 if (token && token->type == ']')
154 return DOM_CODE_OK;
156 return DOM_CODE_SYNTAX_ERR;
159 /* Parse:
161 * 0n+1 / 1
162 * 2n+0 / 2n
163 * 2n+1
164 * -0n+2
165 * -0n+1 / -1
166 * 1n+0 / n+0 / n
167 * 0n+0
170 /* FIXME: Move somewhere else? dom/scanner.h? */
171 static size_t
172 get_scanner_token_number(struct dom_scanner_token *token)
174 size_t number = 0;
176 while (token->string.length > 0 && isdigit(token->string.string[0])) {
177 size_t old_number = number;
179 number *= 10;
181 /* -E2BIG */
182 if (old_number > number)
183 return -1;
185 number += token->string.string[0] - '0';
186 skip_dom_scanner_token_char(token);
189 return number;
192 /* Parses the '(...)' part of ':nth-of-type(...)' and ':nth-child(...)'. */
193 static enum dom_code
194 parse_dom_select_nth_arg(struct dom_select_nth_match *nth, struct dom_scanner *scanner)
196 struct dom_scanner_token *token = get_next_dom_scanner_token(scanner);
197 int sign = 1;
198 int number = -1;
200 if (!token || token->type != '(')
201 return DOM_CODE_SYNTAX_ERR;
203 token = get_next_dom_scanner_token(scanner);
204 if (!token)
205 return DOM_CODE_SYNTAX_ERR;
207 switch (token->type) {
208 case CSS_TOKEN_IDENT:
209 if (dom_scanner_token_contains(token, "even")) {
210 nth->step = 2;
211 nth->index = 0;
213 } else if (dom_scanner_token_contains(token, "odd")) {
214 nth->step = 2;
215 nth->index = 1;
217 } else {
218 /* Check for 'n' ident below. */
219 break;
222 if (skip_css_tokens(scanner, ')'))
223 return DOM_CODE_OK;
225 return DOM_CODE_SYNTAX_ERR;
227 case '-':
228 sign = -1;
230 token = get_next_dom_scanner_token(scanner);
231 if (!token) return DOM_CODE_SYNTAX_ERR;
233 if (token->type != CSS_TOKEN_IDENT)
234 break;
236 if (token->type != CSS_TOKEN_NUMBER)
237 return DOM_CODE_SYNTAX_ERR;
238 /* Fall-through */
240 case CSS_TOKEN_NUMBER:
241 number = get_scanner_token_number(token);
242 if (number < 0)
243 return DOM_CODE_VALUE_ERR;
245 token = get_next_dom_scanner_token(scanner);
246 if (!token) return DOM_CODE_SYNTAX_ERR;
247 break;
249 default:
250 return DOM_CODE_SYNTAX_ERR;
253 /* The rest can contain n+ part */
254 switch (token->type) {
255 case CSS_TOKEN_IDENT:
256 if (!dom_scanner_token_contains(token, "n"))
257 return DOM_CODE_SYNTAX_ERR;
259 nth->step = sign * number;
261 token = get_next_dom_scanner_token(scanner);
262 if (!token) return DOM_CODE_SYNTAX_ERR;
264 if (token->type != '+')
265 break;
267 token = get_next_dom_scanner_token(scanner);
268 if (!token) return DOM_CODE_SYNTAX_ERR;
270 if (token->type != CSS_TOKEN_NUMBER)
271 break;
273 number = get_scanner_token_number(token);
274 if (number < 0)
275 return DOM_CODE_VALUE_ERR;
277 nth->index = sign * number;
278 break;
280 default:
281 nth->step = 0;
282 nth->index = sign * number;
285 if (skip_css_tokens(scanner, ')'))
286 return DOM_CODE_OK;
288 return DOM_CODE_SYNTAX_ERR;
291 /* Parse a pseudo-class or -element with the syntax: ':<ident>'. */
292 static enum dom_code
293 parse_dom_select_pseudo(struct dom_select *select, struct dom_select_node *sel,
294 struct dom_scanner *scanner)
296 struct dom_scanner_token *token = get_dom_scanner_token(scanner);
297 enum dom_select_pseudo pseudo;
298 enum dom_code code;
300 /* Skip double :'s in front of some pseudo's (::first-line, etc.) */
301 do {
302 token = get_next_dom_scanner_token(scanner);
303 } while (token && token->type == ':');
305 if (!token || token->type != CSS_TOKEN_IDENT)
306 return DOM_CODE_SYNTAX_ERR;
308 pseudo = get_dom_select_pseudo(token);
309 switch (pseudo) {
310 case DOM_SELECT_PSEUDO_UNKNOWN:
311 return DOM_CODE_ERR;
313 case DOM_SELECT_PSEUDO_CONTAINS:
314 /* FIXME: E:contains("text") */
315 break;
317 case DOM_SELECT_PSEUDO_NTH_CHILD:
318 case DOM_SELECT_PSEUDO_NTH_LAST_CHILD:
319 code = parse_dom_select_nth_arg(&sel->nth_child, scanner);
320 if (code != DOM_CODE_OK)
321 return code;
323 sel->match.element |= DOM_SELECT_ELEMENT_NTH_CHILD;
324 break;
326 case DOM_SELECT_PSEUDO_FIRST_CHILD:
327 sel->match.element |= DOM_SELECT_ELEMENT_NTH_CHILD;
328 set_dom_select_nth_match(&sel->nth_child, 0, 1);
329 break;
331 case DOM_SELECT_PSEUDO_LAST_CHILD:
332 sel->match.element |= DOM_SELECT_ELEMENT_NTH_CHILD;
333 set_dom_select_nth_match(&sel->nth_child, 0, -1);
334 break;
336 case DOM_SELECT_PSEUDO_ONLY_CHILD:
337 sel->match.element |= DOM_SELECT_ELEMENT_NTH_CHILD;
338 set_dom_select_nth_match(&sel->nth_child, 0, 0);
339 break;
341 case DOM_SELECT_PSEUDO_NTH_TYPE:
342 case DOM_SELECT_PSEUDO_NTH_LAST_TYPE:
343 code = parse_dom_select_nth_arg(&sel->nth_type, scanner);
344 if (code != DOM_CODE_OK)
345 return code;
347 sel->match.element |= DOM_SELECT_ELEMENT_NTH_TYPE;
348 break;
350 case DOM_SELECT_PSEUDO_FIRST_TYPE:
351 sel->match.element |= DOM_SELECT_ELEMENT_NTH_TYPE;
352 set_dom_select_nth_match(&sel->nth_type, 0, 1);
353 break;
355 case DOM_SELECT_PSEUDO_LAST_TYPE:
356 sel->match.element |= DOM_SELECT_ELEMENT_NTH_TYPE;
357 set_dom_select_nth_match(&sel->nth_type, 0, -1);
358 break;
360 case DOM_SELECT_PSEUDO_ONLY_TYPE:
361 sel->match.element |= DOM_SELECT_ELEMENT_NTH_TYPE;
362 set_dom_select_nth_match(&sel->nth_type, 0, 0);
363 break;
365 case DOM_SELECT_PSEUDO_ROOT:
366 sel->match.element |= DOM_SELECT_ELEMENT_ROOT;
367 break;
369 case DOM_SELECT_PSEUDO_EMPTY:
370 sel->match.element |= DOM_SELECT_ELEMENT_EMPTY;
371 break;
373 default:
374 /* It's a bitflag! */
375 select->pseudo |= pseudo;
378 return DOM_CODE_OK;
381 /* The element relation flags are mutual exclusive. This macro can be used
382 * for checking if anyflag is set. */
383 #define get_element_relation(sel) \
384 ((sel)->match.element & DOM_SELECT_RELATION_FLAGS)
386 /* Parse a CSS3 selector and add selector nodes to the @select struct. */
387 static enum dom_code
388 parse_dom_select(struct dom_select *select, struct dom_stack *stack,
389 struct dom_string *string)
391 struct dom_scanner scanner;
392 struct dom_select_node sel;
394 init_dom_scanner(&scanner, &dom_css_scanner_info, string, 0, 0, 1, 0, 0);
396 memset(&sel, 0, sizeof(sel));
398 while (dom_scanner_has_tokens(&scanner)) {
399 struct dom_scanner_token *token = get_dom_scanner_token(&scanner);
400 enum dom_code code;
401 struct dom_select_node *select_node;
403 assert(token);
405 if (token->type == '{'
406 || token->type == '}'
407 || token->type == ';'
408 || token->type == ',')
409 break;
411 /* Examine the selector fragment */
413 switch (token->type) {
414 case CSS_TOKEN_IDENT:
415 sel.node.type = DOM_NODE_ELEMENT;
416 copy_dom_string(&sel.node.string, &token->string);
417 if (dom_scanner_token_contains(token, "*"))
418 sel.match.element |= DOM_SELECT_ELEMENT_UNIVERSAL;
419 break;
421 case CSS_TOKEN_HASH:
422 case CSS_TOKEN_HEX_COLOR:
423 /* ID fragment */
424 sel.node.type = DOM_NODE_ATTRIBUTE;
425 sel.match.attribute |= DOM_SELECT_ATTRIBUTE_ID;
426 /* Skip the leading '#'. */
427 skip_dom_scanner_token_char(token);
428 break;
430 case '[':
431 sel.node.type = DOM_NODE_ATTRIBUTE;
432 code = parse_dom_select_attribute(&sel, &scanner);
433 if (code != DOM_CODE_OK)
434 return code;
435 break;
437 case '.':
438 token = get_next_dom_scanner_token(&scanner);
439 if (!token || token->type != CSS_TOKEN_IDENT)
440 return DOM_CODE_SYNTAX_ERR;
442 sel.node.type = DOM_NODE_ATTRIBUTE;
443 sel.match.attribute |= DOM_SELECT_ATTRIBUTE_SPACE_LIST;
444 set_dom_string(&sel.node.string, "class", -1);
445 copy_dom_string(&sel.node.data.attribute.value, &token->string);
446 break;
448 case ':':
449 code = parse_dom_select_pseudo(select, &sel, &scanner);
450 if (code != DOM_CODE_OK)
451 return code;
452 break;
454 case '>':
455 if (get_element_relation(&sel) != DOM_SELECT_RELATION_DESCENDANT)
456 return DOM_CODE_SYNTAX_ERR;
457 sel.match.element |= DOM_SELECT_RELATION_DIRECT_CHILD;
458 break;
460 case '+':
461 if (get_element_relation(&sel) != DOM_SELECT_RELATION_DESCENDANT)
462 return DOM_CODE_SYNTAX_ERR;
463 sel.match.element |= DOM_SELECT_RELATION_DIRECT_ADJACENT;
464 break;
466 case '~':
467 if (get_element_relation(&sel) != DOM_SELECT_RELATION_DESCENDANT)
468 return DOM_CODE_SYNTAX_ERR;
469 sel.match.element |= DOM_SELECT_RELATION_INDIRECT_ADJACENT;
470 break;
472 default:
473 return DOM_CODE_SYNTAX_ERR;
476 skip_dom_scanner_token(&scanner);
478 if (sel.node.type == DOM_NODE_UNKNOWN)
479 continue;
481 select_node = mem_calloc(1, sizeof(*select_node));
482 copy_struct(select_node, &sel);
484 if (!dom_stack_is_empty(stack)) {
485 struct dom_node *node = &select_node->node;
486 struct dom_node *parent = get_dom_stack_top(stack)->node;
487 struct dom_node_list **list = get_dom_node_list(parent, node);
488 int sort = (node->type == DOM_NODE_ATTRIBUTE);
489 int index;
491 assertm(list != NULL, "Adding node to bad parent [%d -> %d]",
492 node->type, parent->type);
494 index = *list && (*list)->size > 0 && sort
495 ? get_dom_node_map_index(*list, node) : -1;
497 if (!add_to_dom_node_list(list, node, index)) {
498 done_dom_node(node);
499 return DOM_CODE_ALLOC_ERR;
502 node->parent = parent;
504 } else {
505 assert(!select->selector);
506 select->selector = select_node;
509 code = push_dom_node(stack, &select_node->node);
510 if (code != DOM_CODE_OK)
511 return code;
513 if (select_node->node.type != DOM_NODE_ELEMENT)
514 pop_dom_node(stack);
516 memset(&sel, 0, sizeof(sel));
519 if (select->selector)
520 return DOM_CODE_OK;
522 return DOM_CODE_ERR;
525 /* Basically this is just a wrapper for parse_dom_select() to ease error
526 * handling. */
527 struct dom_select *
528 init_dom_select(enum dom_select_syntax syntax, struct dom_string *string)
530 struct dom_select *select = mem_calloc(1, sizeof(select));
531 struct dom_stack stack;
532 enum dom_code code;
534 init_dom_stack(&stack, DOM_STACK_FLAG_NONE);
535 add_dom_stack_tracer(&stack, "init-select: ");
537 code = parse_dom_select(select, &stack, string);
538 done_dom_stack(&stack);
540 if (code == DOM_CODE_OK)
541 return select;
543 done_dom_select(select);
545 return NULL;
548 void
549 done_dom_select(struct dom_select *select)
551 if (select->selector) {
552 struct dom_node *node = (struct dom_node *) select->selector;
554 /* This will recursively free all children select nodes. */
555 done_dom_node(node);
558 mem_free(select);
562 /* DOM node selection: */
564 /* This struct stores data related to the 'application' of a DOM selector
565 * on a DOM tree or stream. */
566 struct dom_select_data {
567 /* The selector matching stack. The various selector nodes are pushed
568 * onto this stack as they are matched (and later popped when they are
569 * no longer 'reachable', that is, has been popped from the DOM tree or
570 * stream. This way the selector can match each selector node multiple
571 * times and the selection is a simple matter of matching the current
572 * node against each state on this stack. */
573 struct dom_stack stack;
575 /* Reference to the selector. */
576 struct dom_select *select;
578 /* The list of nodes who have been matched / selected. */
579 struct dom_node_list *list;
582 /* This state struct is used for the select data stack and holds info about the
583 * node that was matched. */
584 struct dom_select_state {
585 /* The matched node. This is always an element node. */
586 struct dom_node *node;
589 /* Get a child node of a given type. By design, a selector node can
590 * only have one child per type of node. */
591 static struct dom_select_node *
592 get_child_dom_select_node(struct dom_select_node *selector,
593 enum dom_node_type type)
595 struct dom_node_list *children = selector->node.data.element.children;
596 struct dom_node *node;
597 int index;
599 if (!children)
600 return NULL;
602 foreach_dom_node (children, node, index) {
603 if (node->type == type)
604 return (struct dom_select_node *) node;
607 return NULL;
611 #define has_attribute_match(selector, name) \
612 ((selector)->match.attribute & (name))
614 static int
615 match_attribute_value(struct dom_select_node *selector, struct dom_node *node)
617 struct dom_string str;
618 struct dom_string *selvalue = &selector->node.data.attribute.value;
619 struct dom_string *value = &node->data.attribute.value;
620 unsigned char separator;
621 int do_compare;
623 assert(selvalue->length);
625 /* The attribute selector value should atleast be contained in the
626 * attribute value. */
627 if (value->length < selvalue->length)
628 return 0;
630 /* The following three matching methods requires the selector value to
631 * match a substring at a well-defined offset. */
633 if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_EXACT)) {
634 return !dom_string_casecmp(value, selvalue);
637 if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_BEGIN)) {
638 set_dom_string(&str, value->string, selvalue->length);
640 return !dom_string_casecmp(&str, selvalue);
643 if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_END)) {
644 size_t offset = value->length - selvalue->length;
646 set_dom_string(&str, value->string + offset, selvalue->length);
648 return !dom_string_casecmp(&str, selvalue);
651 /* The 3 following matching methods requires the selector value to be a
652 * substring of the value enclosed in a specific separator (with the
653 * begining and ending of the attribute value both being valid
654 * separators). */
656 set_dom_string(&str, value->string, value->length);
658 if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_HYPHEN_LIST)) {
659 separator = '-';
661 } else if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_CONTAINS)) {
662 separator = '\0';
664 } if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_SPACE_LIST)) {
665 separator = ' ';
667 } else {
668 INTERNAL("No attribute selector matching method defined");
669 return 0;
672 do_compare = 1;
674 do {
675 if (do_compare
676 && !dom_string_ncasecmp(&str, selvalue, selvalue->length)) {
677 /* "Contains" matches no matter what comes after. */
678 if (str.length == selvalue->length)
679 return 1;
681 switch (separator) {
682 case '\0':
683 /* "Contains" matches no matter what comes after. */
684 return 1;
686 case '-':
687 if (str.string[str.length] == separator)
688 return 1;
689 break;
691 default:
692 if (isspace(str.string[str.length]))
693 return 1;
697 switch (separator) {
698 case '\0':
699 do_compare = 1;
700 break;
702 case '-':
703 do_compare = (str.string[0] == '-');
704 break;
706 default:
707 do_compare = isspace(str.string[0]);
710 str.length--, str.string++;
712 } while (str.length >= selvalue->length);
714 return 0;
717 /* Match the attribute of an element @node against attribute selector nodes
718 * of a given @base. */
719 static int
720 match_attribute_selectors(struct dom_select_node *base, struct dom_node *node)
722 struct dom_node_list *attrs = node->data.element.map;
723 struct dom_node_list *selnodes = base->node.data.element.map;
724 struct dom_node *selnode;
725 size_t index;
727 assert(base->node.type == DOM_NODE_ELEMENT
728 && node->type == DOM_NODE_ELEMENT);
730 /* If there are no attribute selectors that is a clean match ... */
731 if (!selnodes)
732 return 1;
734 /* ... the opposite goes if there are no attributes to match. */
735 if (!attrs)
736 return 0;
738 foreach_dom_node (selnodes, selnode, index) {
739 struct dom_select_node *selector = (void *) selnode;
740 struct dom_node *attr;
742 if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_ID)) {
743 size_t idindex;
745 attr = NULL;
746 foreach_dom_node (attrs, attr, idindex) {
747 if (attr->data.attribute.id)
748 break;
751 if (!is_dom_node_list_member(attrs, idindex))
752 attr = NULL;
754 } else {
755 attr = get_dom_node_map_entry(attrs, DOM_NODE_ATTRIBUTE,
756 selnode->data.attribute.type,
757 &selnode->string);
760 if (!attr)
761 return 0;
763 if (has_attribute_match(selector, DOM_SELECT_ATTRIBUTE_ANY))
764 continue;
766 if (!match_attribute_value(selector, attr))
767 return 0;
770 return 1;
773 /* XXX: Assume the first context is the one! */
774 #define get_dom_select_state(stack, state) \
775 ((struct dom_select_state *) get_dom_stack_state_data((stack)->contexts[0], state))
777 static int
778 match_element_relation(struct dom_select_node *selector, struct dom_node *node,
779 struct dom_stack *stack)
781 struct dom_stack_state *state;
782 enum dom_select_element_match relation = get_element_relation(selector);
783 int i, index;
785 assert(relation);
787 /* When matching any relation there must be a parent, either so that
788 * the node is a descendant or it is possible to check for siblings. */
789 if (!node->parent)
790 return 0;
792 if (relation != DOM_SELECT_RELATION_DIRECT_CHILD) {
793 /* When looking for preceeding siblings of the current node,
794 * the current node cannot be first or not in the list (-1). */
795 index = get_dom_node_list_index(node->parent, node);
796 if (index < 1)
797 return 0;
798 } else {
799 index = -1;
802 /* Find states which hold the parent of the current selector
803 * and check if the parent selector's node is the parent of the
804 * current node. */
805 foreachback_dom_stack_state(stack, state, i) {
806 struct dom_node *selnode;
808 /* We are only interested in states which hold the parent of
809 * the current selector. */
810 if (state->node != selector->node.parent)
811 continue;
813 selnode = get_dom_select_state(stack, state)->node;
815 if (relation == DOM_SELECT_RELATION_DIRECT_CHILD) {
816 /* Check if the parent selector's node is the parent of
817 * the current node. */
818 if (selnode == node->parent)
819 return 1;
821 } else {
822 int sibindex;
824 /* Check if they are siblings. */
825 if (selnode->parent != node->parent)
826 continue;
828 sibindex = get_dom_node_list_index(node->parent, selnode);
830 if (relation == DOM_SELECT_RELATION_DIRECT_ADJACENT) {
831 /* Check if the sibling node immediately
832 * preceeds the current node. */
833 if (sibindex + 1 == index)
834 return 1;
836 } else { /* DOM_SELECT_RELATION_INDIRECT_ADJACENT */
837 /* Check if the sibling node preceeds the
838 * current node. */
839 if (sibindex < index)
840 return 1;
845 return 0;
848 #define has_element_match(selector, name) \
849 ((selector)->match.element & (name))
851 static int
852 match_element_selector(struct dom_select_node *selector, struct dom_node *node,
853 struct dom_stack *stack)
855 assert(node && node->type == DOM_NODE_ELEMENT);
857 if (!has_element_match(selector, DOM_SELECT_ELEMENT_UNIVERSAL)
858 && dom_node_casecmp(&selector->node, node))
859 return 0;
861 if (get_element_relation(selector) != DOM_SELECT_RELATION_DESCENDANT
862 && !match_element_relation(selector, node, stack))
863 return 0;
865 /* Root nodes either have no parents or are the single child of the
866 * document node. */
867 if (has_element_match(selector, DOM_SELECT_ELEMENT_ROOT)
868 && node->parent) {
869 if (node->parent->type != DOM_NODE_DOCUMENT
870 || node->parent->data.document.children->size > 1)
871 return 0;
874 if (has_element_match(selector, DOM_SELECT_ELEMENT_EMPTY)
875 && node->data.element.children
876 && node->data.element.children->size > 0)
877 return 0;
879 if (has_element_match(selector, DOM_SELECT_ELEMENT_NTH_CHILD)) {
880 /* FIXME */
881 return 0;
884 if (has_element_match(selector, DOM_SELECT_ELEMENT_NTH_TYPE)) {
885 /* FIXME */
886 return 0;
889 /* Check attribute selectors. */
890 if (selector->node.data.element.map
891 && !match_attribute_selectors(selector, node))
892 return 0;
894 return 1;
898 #define get_dom_select_data(stack) ((stack)->current->data)
900 /* Matches an element node being visited against the current selector stack. */
901 enum dom_code
902 dom_select_push_element(struct dom_stack *stack, struct dom_node *node, void *data)
904 struct dom_select_data *select_data = get_dom_select_data(stack);
905 struct dom_stack_state *state;
906 int pos;
908 foreach_dom_stack_state(&select_data->stack, state, pos) {
909 struct dom_select_node *selector = (void *) state->node;
911 /* FIXME: Since the same dom_select_node can be multiple times
912 * on the select_data->stack, cache what select nodes was
913 * matches so that it is only checked once. */
915 if (!match_element_selector(selector, node, &select_data->stack))
916 continue;
918 WDBG("Matched element: %.*s.", node->string.length, node->string.string);
919 /* This node is matched, so push the next selector node to
920 * match on the stack. */
921 selector = get_child_dom_select_node(selector, DOM_NODE_ELEMENT);
922 if (selector)
923 push_dom_node(&select_data->stack, &selector->node);
926 return DOM_CODE_OK;
929 /* Ensures that nodes, no longer 'reachable' on the stack do not have any
930 * states associated with them on the select data stack. */
931 enum dom_code
932 dom_select_pop_element(struct dom_stack *stack, struct dom_node *node, void *data)
934 struct dom_select_data *select_data = get_dom_select_data(stack);
935 struct dom_stack_state *state;
936 int index;
938 stack = &select_data->stack;
940 foreachback_dom_stack_state (stack, state, index) {
941 struct dom_select_state *select_state;
943 select_state = get_dom_select_state(stack, state);
944 if (select_state->node == node) {
945 pop_dom_state(stack, state);
946 WDBG("Remove element.");
947 continue;
951 return DOM_CODE_OK;
954 /* For now this is only for matching the ':contains(<string>)' pseudo-class.
955 * Any node which can contain text and thus characters from the given <string>
956 * are handled in this common callback. */
957 enum dom_code
958 dom_select_push_text(struct dom_stack *stack, struct dom_node *node, void *data)
960 struct dom_select_data *select_data = get_dom_select_data(stack);
961 struct dom_stack_state *state = get_dom_stack_top(&select_data->stack);
962 struct dom_select_node *selector = (void *) state->node;
963 struct dom_select_node *text_sel = get_child_dom_select_node(selector, DOM_NODE_TEXT);
964 struct dom_string *text;
966 WDBG("Text node: %d chars", node->string.length);
968 if (!text_sel)
969 return DOM_CODE_OK;
971 text = &text_sel->node.string;
973 switch (node->type) {
974 case DOM_NODE_TEXT:
975 case DOM_NODE_CDATA_SECTION:
976 case DOM_NODE_ENTITY_REFERENCE:
977 break;
978 default:
979 ERROR("Unhandled type");
982 return DOM_CODE_OK;
985 /* Context info for interacting with the DOM tree or stream stack. */
986 static struct dom_stack_context_info dom_select_context_info = {
987 /* Object size: */ 0,
988 /* Push: */
990 /* */ NULL,
991 /* DOM_NODE_ELEMENT */ dom_select_push_element,
992 /* DOM_NODE_ATTRIBUTE */ NULL,
993 /* DOM_NODE_TEXT */ dom_select_push_text,
994 /* DOM_NODE_CDATA_SECTION */ dom_select_push_text,
995 /* DOM_NODE_ENTITY_REFERENCE */ dom_select_push_text,
996 /* DOM_NODE_ENTITY */ NULL,
997 /* DOM_NODE_PROC_INSTRUCTION */ NULL,
998 /* DOM_NODE_COMMENT */ NULL,
999 /* DOM_NODE_DOCUMENT */ NULL,
1000 /* DOM_NODE_DOCUMENT_TYPE */ NULL,
1001 /* DOM_NODE_DOCUMENT_FRAGMENT */ NULL,
1002 /* DOM_NODE_NOTATION */ NULL,
1004 /* Pop: */
1006 /* */ NULL,
1007 /* DOM_NODE_ELEMENT */ dom_select_pop_element,
1008 /* DOM_NODE_ATTRIBUTE */ NULL,
1009 /* DOM_NODE_TEXT */ NULL,
1010 /* DOM_NODE_CDATA_SECTION */ NULL,
1011 /* DOM_NODE_ENTITY_REFERENCE */ NULL,
1012 /* DOM_NODE_ENTITY */ NULL,
1013 /* DOM_NODE_PROC_INSTRUCTION */ NULL,
1014 /* DOM_NODE_COMMENT */ NULL,
1015 /* DOM_NODE_DOCUMENT */ NULL,
1016 /* DOM_NODE_DOCUMENT_TYPE */ NULL,
1017 /* DOM_NODE_DOCUMENT_FRAGMENT */ NULL,
1018 /* DOM_NODE_NOTATION */ NULL,
1022 /* Context info related to the private select data stack of matched nodes. */
1023 static struct dom_stack_context_info dom_select_data_context_info = {
1024 /* Object size: */ sizeof(struct dom_select_state),
1025 /* Push: */
1027 /* */ NULL,
1028 /* DOM_NODE_ELEMENT */ NULL,
1029 /* DOM_NODE_ATTRIBUTE */ NULL,
1030 /* DOM_NODE_TEXT */ NULL,
1031 /* DOM_NODE_CDATA_SECTION */ NULL,
1032 /* DOM_NODE_ENTITY_REFERENCE */ NULL,
1033 /* DOM_NODE_ENTITY */ NULL,
1034 /* DOM_NODE_PROC_INSTRUCTION */ NULL,
1035 /* DOM_NODE_COMMENT */ NULL,
1036 /* DOM_NODE_DOCUMENT */ NULL,
1037 /* DOM_NODE_DOCUMENT_TYPE */ NULL,
1038 /* DOM_NODE_DOCUMENT_FRAGMENT */ NULL,
1039 /* DOM_NODE_NOTATION */ NULL,
1041 /* Pop: */
1043 /* */ NULL,
1044 /* DOM_NODE_ELEMENT */ NULL,
1045 /* DOM_NODE_ATTRIBUTE */ NULL,
1046 /* DOM_NODE_TEXT */ NULL,
1047 /* DOM_NODE_CDATA_SECTION */ NULL,
1048 /* DOM_NODE_ENTITY_REFERENCE */ NULL,
1049 /* DOM_NODE_ENTITY */ NULL,
1050 /* DOM_NODE_PROC_INSTRUCTION */ NULL,
1051 /* DOM_NODE_COMMENT */ NULL,
1052 /* DOM_NODE_DOCUMENT */ NULL,
1053 /* DOM_NODE_DOCUMENT_TYPE */ NULL,
1054 /* DOM_NODE_DOCUMENT_FRAGMENT */ NULL,
1055 /* DOM_NODE_NOTATION */ NULL,
1060 struct dom_node_list *
1061 select_dom_nodes(struct dom_select *select, struct dom_node *root)
1063 struct dom_select_data select_data;
1064 struct dom_stack stack;
1066 memset(&select_data, 0, sizeof(select_data));
1068 select_data.select = select;;
1070 init_dom_stack(&stack, DOM_STACK_FLAG_NONE);
1071 add_dom_stack_context(&stack, &select_data,
1072 &dom_select_context_info);
1073 add_dom_stack_tracer(&stack, "select-tree: ");
1075 init_dom_stack(&select_data.stack, DOM_STACK_FLAG_NONE);
1076 add_dom_stack_context(&select_data.stack, &select_data,
1077 &dom_select_data_context_info);
1078 add_dom_stack_tracer(&select_data.stack, "select-match: ");
1080 if (push_dom_node(&select_data.stack, &select->selector->node) == DOM_CODE_OK) {
1081 get_dom_stack_top(&select_data.stack)->immutable = 1;
1082 walk_dom_nodes(&stack, root);
1085 done_dom_stack(&select_data.stack);
1086 done_dom_stack(&stack);
1088 return select_data.list;