2016-08-29 00:20:40 +03:00
|
|
|
/*
|
2017-03-14 23:44:48 +03:00
|
|
|
Copyright (C) 2016-2017 Alexander Borisov
|
2016-08-29 00:20:40 +03:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
Author: lex.borisov@gmail.com (Alexander Borisov)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "modest/finder/finder.h"
|
|
|
|
#include "modest/finder/resource.h"
|
|
|
|
|
|
|
|
modest_finder_t * modest_finder_create(void)
|
|
|
|
{
|
2017-03-03 09:20:23 +03:00
|
|
|
return (modest_finder_t*)mycore_calloc(1, sizeof(modest_finder_t));
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
|
2017-03-03 09:20:23 +03:00
|
|
|
mystatus_t modest_finder_init(modest_finder_t* finder)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
|
|
|
return MODEST_STATUS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void modest_finder_clean(modest_finder_t* finder)
|
|
|
|
{
|
2016-10-07 20:47:31 +03:00
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
modest_finder_t * modest_finder_destroy(modest_finder_t* finder, bool self_destroy)
|
|
|
|
{
|
|
|
|
if(finder == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if(self_destroy) {
|
2017-03-03 09:20:23 +03:00
|
|
|
mycore_free(finder);
|
2016-08-29 00:20:40 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return finder;
|
|
|
|
}
|
|
|
|
|
2016-11-22 15:22:59 +03:00
|
|
|
modest_finder_t * modest_finder_create_simple(void)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
|
|
|
modest_finder_t *finder = modest_finder_create();
|
|
|
|
|
|
|
|
if(finder == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-11-22 15:22:59 +03:00
|
|
|
if(modest_finder_init(finder) != MODEST_STATUS_OK)
|
2016-08-29 00:20:40 +03:00
|
|
|
return modest_finder_destroy(finder, true);
|
|
|
|
|
|
|
|
return finder;
|
|
|
|
}
|
|
|
|
|
2016-10-07 20:47:31 +03:00
|
|
|
void modest_finder_callback_found_with_collection(modest_finder_t* finder, myhtml_tree_node_t* node, mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector, mycss_selectors_specificity_t* spec, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_collection_t* collection = (myhtml_collection_t*)ctx;
|
2016-08-29 00:20:40 +03:00
|
|
|
|
|
|
|
if(myhtml_collection_check_size(collection, 1, 1024) == MyHTML_STATUS_OK) {
|
|
|
|
collection->list[ collection->length ] = node;
|
|
|
|
collection->length++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-07 20:47:31 +03:00
|
|
|
void modest_finder_callback_found_with_bool(modest_finder_t* finder, myhtml_tree_node_t* node, mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector, mycss_selectors_specificity_t* spec, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
|
|
|
bool *is = (bool*)ctx;
|
|
|
|
|
|
|
|
if(*is == false)
|
|
|
|
*is = true;
|
|
|
|
}
|
|
|
|
|
2016-10-07 20:47:31 +03:00
|
|
|
void modest_finder_specificity_inc(mycss_selectors_entry_t* selector, mycss_selectors_specificity_t* spec)
|
|
|
|
{
|
|
|
|
switch (selector->type) {
|
|
|
|
case MyCSS_SELECTORS_TYPE_ID:
|
|
|
|
spec->a++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MyCSS_SELECTORS_TYPE_CLASS:
|
|
|
|
case MyCSS_SELECTORS_TYPE_ATTRIBUTE:
|
|
|
|
case MyCSS_SELECTORS_TYPE_PSEUDO_CLASS_FUNCTION:
|
|
|
|
case MyCSS_SELECTORS_TYPE_PSEUDO_CLASS:
|
|
|
|
spec->b++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MyCSS_SELECTORS_TYPE_ELEMENT:
|
|
|
|
case MyCSS_SELECTORS_TYPE_PSEUDO_ELEMENT_FUNCTION:
|
|
|
|
case MyCSS_SELECTORS_TYPE_PSEUDO_ELEMENT:
|
|
|
|
spec->c++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-14 14:49:05 +03:00
|
|
|
modest_finder_t * modest_finder_by_stylesheet(mycss_stylesheet_t *stylesheet, myhtml_collection_t** collection, myhtml_tree_node_t* base_node)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2017-02-14 14:49:05 +03:00
|
|
|
if(collection == NULL || base_node == NULL || stylesheet == NULL)
|
2016-08-29 00:20:40 +03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
modest_finder_t *finder = modest_finder_create();
|
|
|
|
|
|
|
|
if(finder == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2017-03-03 09:20:23 +03:00
|
|
|
mystatus_t status = modest_finder_init(finder);
|
2016-08-29 00:20:40 +03:00
|
|
|
|
|
|
|
if(status != MODEST_STATUS_OK) {
|
|
|
|
modest_finder_destroy(finder, true);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*collection == NULL) {
|
2017-03-03 09:20:23 +03:00
|
|
|
mystatus_t status;
|
2016-08-29 00:20:40 +03:00
|
|
|
*collection = myhtml_collection_create(4096, &status);
|
|
|
|
|
|
|
|
if(status) {
|
|
|
|
modest_finder_destroy(finder, true);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
myhtml_collection_clean(*collection);
|
|
|
|
|
2017-02-14 14:49:05 +03:00
|
|
|
mycss_selectors_list_t *selector_list = stylesheet->sel_list_first;
|
2016-11-22 15:22:59 +03:00
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
while(selector_list) {
|
2016-10-07 20:47:31 +03:00
|
|
|
for(size_t i = 0; i < selector_list->entries_list_length; i++) {
|
|
|
|
mycss_selectors_specificity_t spec = selector_list->entries_list[i].specificity;
|
|
|
|
|
|
|
|
modest_finder_node_combinator_begin(finder, base_node, selector_list, selector_list->entries_list[i].entry, &spec, modest_finder_callback_found_with_collection, *collection);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
selector_list = selector_list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return finder;
|
|
|
|
}
|
|
|
|
|
2017-03-03 09:20:23 +03:00
|
|
|
mystatus_t modest_finder_by_selectors_list(modest_finder_t* finder, myhtml_tree_node_t* scope_node,
|
2016-11-22 15:22:59 +03:00
|
|
|
mycss_selectors_list_t* selector_list, myhtml_collection_t** collection)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2017-02-14 14:49:05 +03:00
|
|
|
if(finder == NULL || selector_list == NULL || scope_node == NULL || collection == NULL)
|
2016-11-22 14:30:38 +03:00
|
|
|
return MODEST_STATUS_ERROR;
|
2016-08-29 00:20:40 +03:00
|
|
|
|
2016-11-22 14:30:38 +03:00
|
|
|
if(*collection == NULL) {
|
2017-03-03 09:20:23 +03:00
|
|
|
mystatus_t status;
|
2016-11-22 14:30:38 +03:00
|
|
|
*collection = myhtml_collection_create(4096, &status);
|
2016-08-29 00:20:40 +03:00
|
|
|
|
|
|
|
if(status)
|
2016-11-22 14:30:38 +03:00
|
|
|
return MODEST_STATUS_ERROR_MEMORY_ALLOCATION;
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
|
2018-03-24 15:13:22 +03:00
|
|
|
// FRANK
|
|
|
|
printf("\nmodest_finder_by_selectors_list()\n");
|
|
|
|
printf("\tselector_list->entries_list_length = %d\n", (int)selector_list->entries_list_length);
|
|
|
|
|
2016-10-07 20:47:31 +03:00
|
|
|
for(size_t i = 0; i < selector_list->entries_list_length; i++) {
|
|
|
|
mycss_selectors_specificity_t spec = selector_list->entries_list[i].specificity;
|
|
|
|
|
2016-11-22 14:30:38 +03:00
|
|
|
modest_finder_node_combinator_begin(finder, scope_node, selector_list, selector_list->entries_list[i].entry, &spec,
|
|
|
|
modest_finder_callback_found_with_collection, *collection);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
|
2016-11-22 14:30:38 +03:00
|
|
|
return MODEST_STATUS_OK;
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t * modest_finder_node_combinator_begin(modest_finder_t* finder, myhtml_tree_node_t* base_node,
|
|
|
|
mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector,
|
|
|
|
mycss_selectors_specificity_t* spec, modest_finder_callback_f callback_found, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-08-29 19:55:07 +03:00
|
|
|
if(selector == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2018-03-24 15:13:22 +03:00
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
myhtml_tree_node_t *node = base_node;
|
|
|
|
|
2018-03-24 15:13:22 +03:00
|
|
|
// FRANK
|
|
|
|
printf("\nmodest_finder_node_combinator_begin()\n\t%s\n", (node)?"has node":"no node");
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
while(node) {
|
|
|
|
if(node->tag_id != MyHTML_TAG__TEXT && node->tag_id != MyHTML_TAG__COMMENT &&
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_type_map[selector->type](finder, node, selector, spec))
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2018-03-24 15:13:22 +03:00
|
|
|
printf("\t%s\n", (selector->next != NULL)?"has next":"no next");
|
2016-08-29 00:20:40 +03:00
|
|
|
if(selector->next == NULL) {
|
2018-03-24 15:13:22 +03:00
|
|
|
printf("\t%s\n", (callback_found)?"callback_found":"no callback_found");
|
2016-10-07 20:47:31 +03:00
|
|
|
if(callback_found)
|
|
|
|
callback_found(finder, node, selector_list, selector, spec, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
else {
|
2018-03-24 15:13:22 +03:00
|
|
|
printf("\tselector->next->combinator = %d\n", (int)selector->next->combinator);
|
2016-08-29 00:20:40 +03:00
|
|
|
|
2018-03-24 15:13:22 +03:00
|
|
|
myhtml_tree_node_t *find_node = modest_finder_static_selector_combinator_map[selector->next->combinator](finder, node, selector_list, selector->next, spec, callback_found, ctx);
|
|
|
|
printf("\t%s\n", (find_node)?"find_node":"no find_node");
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
if(find_node == NULL) {
|
|
|
|
while(node != base_node && node->next == NULL)
|
|
|
|
node = node->parent;
|
|
|
|
|
|
|
|
if(node == base_node)
|
|
|
|
break;
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(node->child)
|
|
|
|
node = node->child;
|
|
|
|
else {
|
|
|
|
while(node != base_node && node->next == NULL)
|
|
|
|
node = node->parent;
|
|
|
|
|
|
|
|
if(node == base_node)
|
|
|
|
break;
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
}
|
2018-03-24 15:13:22 +03:00
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* some */
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t * modest_finder_node_combinator_undef(modest_finder_t* finder, myhtml_tree_node_t* base_node,
|
|
|
|
mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector,
|
|
|
|
mycss_selectors_specificity_t* spec, modest_finder_callback_f callback_found, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-08-29 19:55:07 +03:00
|
|
|
if(selector == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2018-03-24 15:13:22 +03:00
|
|
|
// FRANK
|
|
|
|
printf("\nmodest_finder_node_combinator_undef()\n");
|
|
|
|
printf("\tselector->type = %d\n", (int)selector->type);
|
|
|
|
|
2016-10-07 20:47:31 +03:00
|
|
|
mycss_selectors_specificity_t match_spec = *spec;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
if(base_node->tag_id != MyHTML_TAG__TEXT && base_node->tag_id != MyHTML_TAG__COMMENT &&
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_type_map[selector->type](finder, base_node, selector, &match_spec)) {
|
2016-08-29 00:20:40 +03:00
|
|
|
if(selector->next == NULL) {
|
2016-10-07 20:47:31 +03:00
|
|
|
if(callback_found)
|
|
|
|
callback_found(finder, base_node, selector_list, selector, &match_spec, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
else {
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_combinator_map[selector->next->combinator](finder, base_node, selector_list, selector->next, &match_spec, callback_found, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return base_node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* E F or E >> F */
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t * modest_finder_node_combinator_descendant(modest_finder_t* finder, myhtml_tree_node_t* base_node,
|
|
|
|
mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector,
|
|
|
|
mycss_selectors_specificity_t* spec, modest_finder_callback_f callback_found, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-08-29 19:55:07 +03:00
|
|
|
if(selector == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
myhtml_tree_node_t *node = base_node->child;
|
|
|
|
|
|
|
|
while(node) {
|
2016-10-07 20:47:31 +03:00
|
|
|
mycss_selectors_specificity_t match_spec = *spec;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
if(node->tag_id != MyHTML_TAG__TEXT && node->tag_id != MyHTML_TAG__COMMENT &&
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_type_map[selector->type](finder, node, selector, &match_spec))
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
|
|
|
if(selector->next == NULL) {
|
2016-10-07 20:47:31 +03:00
|
|
|
if(callback_found)
|
|
|
|
callback_found(finder, node, selector_list, selector, &match_spec, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
else {
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t *find_node = modest_finder_static_selector_combinator_map[selector->next->combinator](finder, node, selector_list, selector->next, &match_spec, callback_found, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
|
|
|
|
if(find_node == NULL) {
|
|
|
|
while(node != base_node && node->next == NULL)
|
|
|
|
node = node->parent;
|
|
|
|
|
|
|
|
if(node == base_node)
|
|
|
|
break;
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(node->child)
|
|
|
|
node = node->child;
|
|
|
|
else {
|
|
|
|
while(node != base_node && node->next == NULL)
|
|
|
|
node = node->parent;
|
|
|
|
|
|
|
|
if(node == base_node)
|
|
|
|
break;
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* E > F */
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t * modest_finder_node_combinator_child(modest_finder_t* finder, myhtml_tree_node_t* base_node,
|
|
|
|
mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector,
|
|
|
|
mycss_selectors_specificity_t* spec, modest_finder_callback_f callback_found, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-08-29 19:55:07 +03:00
|
|
|
if(selector == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
myhtml_tree_node_t *node = base_node->child;
|
|
|
|
|
|
|
|
while(node) {
|
2016-10-07 20:47:31 +03:00
|
|
|
mycss_selectors_specificity_t match_spec = *spec;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
if(node->tag_id != MyHTML_TAG__TEXT && node->tag_id != MyHTML_TAG__COMMENT &&
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_type_map[selector->type](finder, node, selector, &match_spec))
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
|
|
|
if(selector->next == NULL) {
|
2016-10-07 20:47:31 +03:00
|
|
|
if(callback_found)
|
|
|
|
callback_found(finder, node, selector_list ,selector, &match_spec, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
else {
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_combinator_map[selector->next->combinator](finder, node, selector_list, selector->next, &match_spec, callback_found, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base_node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* E + F */
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t * modest_finder_node_combinator_next_sibling(modest_finder_t* finder, myhtml_tree_node_t* base_node,
|
|
|
|
mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector,
|
|
|
|
mycss_selectors_specificity_t* spec, modest_finder_callback_f callback_found, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-08-29 19:55:07 +03:00
|
|
|
if(selector == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
myhtml_tree_node_t *node = base_node->next;
|
|
|
|
|
2016-10-07 20:47:31 +03:00
|
|
|
while(node) {
|
|
|
|
if(node->tag_id != MyHTML_TAG__TEXT && node->tag_id != MyHTML_TAG__COMMENT)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-10-07 20:47:31 +03:00
|
|
|
mycss_selectors_specificity_t match_spec = *spec;
|
|
|
|
|
|
|
|
if(modest_finder_static_selector_type_map[selector->type](finder, node, selector, &match_spec)) {
|
|
|
|
if(selector->next == NULL) {
|
|
|
|
if(callback_found)
|
|
|
|
callback_found(finder, node, selector_list, selector, &match_spec, ctx);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
modest_finder_static_selector_combinator_map[selector->next->combinator](finder, node, selector_list, selector->next, &match_spec, callback_found, ctx);
|
|
|
|
}
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
2016-10-07 20:47:31 +03:00
|
|
|
|
|
|
|
break;
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
2016-10-07 20:47:31 +03:00
|
|
|
|
|
|
|
node = node->next;
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return base_node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* E ~ F */
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t * modest_finder_node_combinator_following_sibling(modest_finder_t* finder, myhtml_tree_node_t* base_node,
|
|
|
|
mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector,
|
|
|
|
mycss_selectors_specificity_t* spec, modest_finder_callback_f callback_found, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-08-29 19:55:07 +03:00
|
|
|
if(selector == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
myhtml_tree_node_t *node = base_node->next;
|
|
|
|
|
|
|
|
while(node) {
|
2016-10-07 20:47:31 +03:00
|
|
|
mycss_selectors_specificity_t match_spec = *spec;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
if(node->tag_id != MyHTML_TAG__TEXT && node->tag_id != MyHTML_TAG__COMMENT &&
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_type_map[selector->type](finder, node, selector, &match_spec))
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
|
|
|
if(selector->next == NULL) {
|
2016-10-07 20:47:31 +03:00
|
|
|
if(callback_found)
|
|
|
|
callback_found(finder, node, selector_list, selector, &match_spec, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
else {
|
2016-10-07 20:47:31 +03:00
|
|
|
modest_finder_static_selector_combinator_map[selector->next->combinator](finder, node, selector_list, selector->next, &match_spec, callback_found, ctx);
|
2016-08-29 00:20:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return base_node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* E || F */
|
2016-10-07 20:47:31 +03:00
|
|
|
myhtml_tree_node_t * modest_finder_node_combinator_column(modest_finder_t* finder, myhtml_tree_node_t* base_node,
|
|
|
|
mycss_selectors_list_t* selector_list, mycss_selectors_entry_t* selector,
|
|
|
|
mycss_selectors_specificity_t* spec, modest_finder_callback_f callback_found, void* ctx)
|
2016-08-29 00:20:40 +03:00
|
|
|
{
|
2016-08-29 19:55:07 +03:00
|
|
|
if(selector == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-29 00:20:40 +03:00
|
|
|
return base_node;
|
|
|
|
}
|
|
|
|
|
|
|
|
|