2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 James Bursa <bursa@users.sourceforge.net>
|
2003-04-04 19:19:32 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#define CSS_INTERNALS
|
2003-04-06 22:09:34 +04:00
|
|
|
#undef NDEBUG
|
2003-04-04 19:19:32 +04:00
|
|
|
#include "netsurf/content/content.h"
|
2003-04-06 22:09:34 +04:00
|
|
|
#include "netsurf/content/fetch.h"
|
|
|
|
#include "netsurf/content/fetchcache.h"
|
2003-04-04 19:19:32 +04:00
|
|
|
#include "netsurf/css/css.h"
|
2003-04-05 20:24:43 +04:00
|
|
|
#include "netsurf/css/parser.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#ifdef riscos
|
2003-04-06 22:09:34 +04:00
|
|
|
#include "netsurf/desktop/gui.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#endif
|
2003-04-04 19:19:32 +04:00
|
|
|
#include "netsurf/utils/log.h"
|
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* internal structures
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct decl {
|
|
|
|
unsigned long score;
|
|
|
|
struct rule * rule;
|
|
|
|
};
|
|
|
|
|
2003-07-05 01:18:24 +04:00
|
|
|
static void css_atimport_callback(content_msg msg, struct content *css,
|
2003-06-17 23:24:21 +04:00
|
|
|
void *p1, void *p2, const char *error);
|
2003-04-04 19:19:32 +04:00
|
|
|
|
|
|
|
const struct css_style css_base_style = {
|
|
|
|
0xffffff,
|
|
|
|
CSS_CLEAR_NONE,
|
|
|
|
0x000000,
|
|
|
|
CSS_DISPLAY_BLOCK,
|
|
|
|
CSS_FLOAT_NONE,
|
|
|
|
{ CSS_FONT_SIZE_LENGTH, { { 12, CSS_UNIT_PT } } },
|
|
|
|
CSS_FONT_WEIGHT_NORMAL,
|
|
|
|
CSS_FONT_STYLE_NORMAL,
|
|
|
|
{ CSS_HEIGHT_AUTO, { 1, CSS_UNIT_EM } },
|
|
|
|
{ CSS_LINE_HEIGHT_ABSOLUTE, { 1.2 } },
|
|
|
|
CSS_TEXT_ALIGN_LEFT,
|
|
|
|
{ CSS_WIDTH_AUTO, { { 1, CSS_UNIT_EM } } }
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct css_style css_empty_style = {
|
|
|
|
CSS_COLOR_INHERIT,
|
|
|
|
CSS_CLEAR_INHERIT,
|
|
|
|
CSS_COLOR_INHERIT,
|
|
|
|
CSS_DISPLAY_INHERIT,
|
|
|
|
CSS_FLOAT_INHERIT,
|
|
|
|
{ CSS_FONT_SIZE_INHERIT, { { 1, CSS_UNIT_EM } } },
|
|
|
|
CSS_FONT_WEIGHT_INHERIT,
|
|
|
|
CSS_FONT_STYLE_INHERIT,
|
2003-04-15 21:53:00 +04:00
|
|
|
{ CSS_HEIGHT_INHERIT, { 1, CSS_UNIT_EM } },
|
2003-04-04 19:19:32 +04:00
|
|
|
{ CSS_LINE_HEIGHT_INHERIT, { 1.2 } },
|
|
|
|
CSS_TEXT_ALIGN_INHERIT,
|
|
|
|
{ CSS_WIDTH_INHERIT, { { 1, CSS_UNIT_EM } } }
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct css_style css_blank_style = {
|
|
|
|
TRANSPARENT,
|
|
|
|
CSS_CLEAR_NONE,
|
|
|
|
CSS_COLOR_INHERIT,
|
|
|
|
CSS_DISPLAY_INLINE,
|
|
|
|
CSS_FLOAT_NONE,
|
|
|
|
{ CSS_FONT_SIZE_INHERIT, { { 1, CSS_UNIT_EM } } },
|
|
|
|
CSS_FONT_WEIGHT_INHERIT,
|
|
|
|
CSS_FONT_STYLE_INHERIT,
|
|
|
|
{ CSS_HEIGHT_AUTO, { 1, CSS_UNIT_EM } },
|
|
|
|
{ CSS_LINE_HEIGHT_INHERIT, { 1.2 } },
|
|
|
|
CSS_TEXT_ALIGN_INHERIT,
|
|
|
|
{ CSS_WIDTH_AUTO, { { 1, CSS_UNIT_EM } } }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void css_create(struct content *c)
|
|
|
|
{
|
2003-04-05 19:35:55 +04:00
|
|
|
unsigned int i;
|
2003-04-04 19:19:32 +04:00
|
|
|
LOG(("content %p", c));
|
2003-04-06 22:09:34 +04:00
|
|
|
c->data.css.css = xcalloc(1, sizeof(*c->data.css.css));
|
|
|
|
css_lex_init(&c->data.css.css->lexer);
|
|
|
|
c->data.css.css->parser = css_parser_Alloc(malloc);
|
2003-04-05 19:35:55 +04:00
|
|
|
for (i = 0; i != HASH_SIZE; i++)
|
2003-04-06 22:09:34 +04:00
|
|
|
c->data.css.css->rule[i] = 0;
|
|
|
|
c->data.css.import_count = 0;
|
2003-04-10 01:57:09 +04:00
|
|
|
c->data.css.import_url = xcalloc(0, sizeof(*c->data.css.import_url));
|
2003-04-06 22:09:34 +04:00
|
|
|
c->data.css.import_content = xcalloc(0, sizeof(*c->data.css.import_content));
|
|
|
|
c->active = 0;
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void css_process_data(struct content *c, char *data, unsigned long size)
|
|
|
|
{
|
|
|
|
int token;
|
|
|
|
YY_BUFFER_STATE buffer;
|
2003-04-06 22:09:34 +04:00
|
|
|
struct parse_params param = {0, c, 0};
|
2003-04-04 19:19:32 +04:00
|
|
|
|
|
|
|
LOG(("content %p, size %lu", c, size));
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
buffer = css__scan_bytes(data, size, c->data.css.css->lexer);
|
|
|
|
while ((token = css_lex(c->data.css.css->lexer))) {
|
|
|
|
css_parser_(c->data.css.css->parser, token,
|
2003-04-25 12:03:15 +04:00
|
|
|
xstrdup(css_get_text(c->data.css.css->lexer)),
|
2003-04-05 20:24:43 +04:00
|
|
|
¶m);
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
css__delete_buffer(buffer, c->data.css.css->lexer);
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int css_convert(struct content *c, unsigned int width, unsigned int height)
|
|
|
|
{
|
2003-04-06 22:09:34 +04:00
|
|
|
struct parse_params param = {0, c, 0};
|
2003-04-05 20:24:43 +04:00
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
LOG(("content %p", c));
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
css_parser_(c->data.css.css->parser, 0, 0, ¶m);
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
css_parser_Free(c->data.css.css->parser, free);
|
|
|
|
css_lex_destroy(c->data.css.css->lexer);
|
|
|
|
|
|
|
|
/* complete fetch of any imported stylesheets */
|
|
|
|
while (c->active != 0) {
|
2003-04-15 21:53:00 +04:00
|
|
|
LOG(("importing %i from '%s'", c->active, c->url));
|
2003-04-06 22:09:34 +04:00
|
|
|
fetch_poll();
|
|
|
|
gui_multitask();
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
c->status = CONTENT_STATUS_DONE;
|
2003-04-04 19:19:32 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void css_revive(struct content *c, unsigned int width, unsigned int height)
|
|
|
|
{
|
2003-04-10 01:57:09 +04:00
|
|
|
unsigned int i;
|
|
|
|
/* imported stylesheets */
|
|
|
|
for (i = 0; i != c->data.css.import_count; i++) {
|
2003-06-17 23:24:21 +04:00
|
|
|
c->data.css.import_content[i] = fetchcache(
|
|
|
|
c->data.css.import_url[i], c->url,
|
|
|
|
css_atimport_callback, c, i,
|
2003-07-15 02:57:45 +04:00
|
|
|
c->width, c->height);
|
2003-07-16 21:38:46 +04:00
|
|
|
if (c->data.css.import_content[i] == 0)
|
|
|
|
continue;
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->data.css.import_content[i]->status != CONTENT_STATUS_DONE)
|
|
|
|
c->active++;
|
2003-04-10 01:57:09 +04:00
|
|
|
}
|
|
|
|
while (c->active != 0) {
|
|
|
|
fetch_poll();
|
|
|
|
gui_multitask();
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void css_reformat(struct content *c, unsigned int width, unsigned int height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void css_destroy(struct content *c)
|
|
|
|
{
|
2003-04-06 22:09:34 +04:00
|
|
|
unsigned int i;
|
|
|
|
struct node *r;
|
|
|
|
|
|
|
|
for (i = 0; i != HASH_SIZE; i++) {
|
|
|
|
for (r = c->data.css.css->rule[i]; r != 0; r = r->next)
|
|
|
|
xfree(r->style);
|
|
|
|
css_free_node(c->data.css.css->rule[i]);
|
|
|
|
}
|
|
|
|
xfree(c->data.css.css);
|
|
|
|
|
|
|
|
/* imported stylesheets */
|
|
|
|
for (i = 0; i != c->data.css.import_count; i++)
|
2003-04-10 01:57:09 +04:00
|
|
|
if (c->data.css.import_content[i] != 0) {
|
|
|
|
free(c->data.css.import_url[i]);
|
2003-06-17 23:24:21 +04:00
|
|
|
content_remove_user(c->data.css.import_content[i],
|
2003-07-15 02:57:45 +04:00
|
|
|
css_atimport_callback, c, i);
|
2003-04-10 01:57:09 +04:00
|
|
|
}
|
|
|
|
xfree(c->data.css.import_url);
|
2003-04-06 22:09:34 +04:00
|
|
|
xfree(c->data.css.import_content);
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* parser support functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct node * css_new_node(node_type type, char *data,
|
|
|
|
struct node *left, struct node *right)
|
|
|
|
{
|
|
|
|
struct node *node = xcalloc(1, sizeof(*node));
|
|
|
|
node->type = type;
|
|
|
|
node->data = data;
|
|
|
|
node->left = left;
|
|
|
|
node->right = right;
|
|
|
|
node->next = 0;
|
|
|
|
node->comb = COMB_NONE;
|
|
|
|
node->style = 0;
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
void css_free_node(struct node *node)
|
|
|
|
{
|
|
|
|
if (node == 0)
|
|
|
|
return;
|
|
|
|
if (node->left != 0)
|
|
|
|
css_free_node(node->left);
|
|
|
|
if (node->right != 0)
|
|
|
|
css_free_node(node->right);
|
|
|
|
if (node->next != 0)
|
|
|
|
css_free_node(node->next);
|
|
|
|
if (node->data != 0)
|
|
|
|
free(node->data);
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
void css_atimport(struct content *c, struct node *node)
|
|
|
|
{
|
|
|
|
char *s, *url;
|
|
|
|
int string = 0, screen = 1;
|
2003-06-17 23:24:21 +04:00
|
|
|
unsigned int i;
|
2003-04-06 22:09:34 +04:00
|
|
|
|
|
|
|
LOG(("@import rule"));
|
|
|
|
|
|
|
|
/* uri(...) or "..." */
|
|
|
|
switch (node->type) {
|
|
|
|
case NODE_URI:
|
|
|
|
LOG(("URI '%s'", node->data));
|
|
|
|
for (s = node->data + 4;
|
|
|
|
*s == ' ' || *s == '\t' || *s == '\r' ||
|
|
|
|
*s == '\n' || *s == '\f';
|
|
|
|
s++)
|
|
|
|
;
|
|
|
|
if (*s == '\'' || *s == '"') {
|
|
|
|
string = 1;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
url = xstrdup(s);
|
|
|
|
for (s = url + strlen(url) - 2;
|
|
|
|
*s == ' ' || *s == '\t' || *s == '\r' ||
|
|
|
|
*s == '\n' || *s == '\f';
|
|
|
|
s--)
|
|
|
|
;
|
|
|
|
if (string)
|
|
|
|
*s = 0;
|
|
|
|
else
|
|
|
|
*(s + 1) = 0;
|
|
|
|
break;
|
|
|
|
case NODE_STRING:
|
|
|
|
LOG(("STRING '%s'", node->data));
|
|
|
|
url = xstrdup(node->data + 1);
|
|
|
|
*(url + strlen(url) - 1) = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* media not specified, 'screen', or 'all' */
|
|
|
|
for (node = node->next; node != 0; node = node->next) {
|
|
|
|
screen = 0;
|
|
|
|
if (node->type != NODE_IDENT) {
|
|
|
|
free(url);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LOG(("medium '%s'", node->data));
|
|
|
|
if (strcmp(node->data, "screen") == 0 || strcmp(node->data, "all") == 0) {
|
|
|
|
screen = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
node = node->next;
|
|
|
|
if (node == 0 || node->type != NODE_COMMA) {
|
|
|
|
free(url);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!screen) {
|
|
|
|
free(url);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* start the fetch */
|
|
|
|
c->data.css.import_count++;
|
2003-04-10 01:57:09 +04:00
|
|
|
c->data.css.import_url = xrealloc(c->data.css.import_url,
|
|
|
|
c->data.css.import_count * sizeof(*c->data.css.import_url));
|
2003-04-06 22:09:34 +04:00
|
|
|
c->data.css.import_content = xrealloc(c->data.css.import_content,
|
|
|
|
c->data.css.import_count * sizeof(*c->data.css.import_content));
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
i = c->data.css.import_count - 1;
|
|
|
|
c->data.css.import_url[i] = url_join(url, c->url);
|
|
|
|
c->data.css.import_content[i] = fetchcache(
|
|
|
|
c->data.css.import_url[i], c->url, css_atimport_callback,
|
2003-07-15 02:57:45 +04:00
|
|
|
c, i, c->width, c->height);
|
2003-07-16 21:38:46 +04:00
|
|
|
if (c->data.css.import_content[i] &&
|
|
|
|
c->data.css.import_content[i]->status != CONTENT_STATUS_DONE)
|
2003-06-17 23:24:21 +04:00
|
|
|
c->active++;
|
2003-04-06 22:09:34 +04:00
|
|
|
|
|
|
|
free(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
void css_atimport_callback(content_msg msg, struct content *css,
|
|
|
|
void *p1, void *p2, const char *error)
|
2003-04-06 22:09:34 +04:00
|
|
|
{
|
2003-06-17 23:24:21 +04:00
|
|
|
struct content *c = p1;
|
|
|
|
unsigned int i = (unsigned int) p2;
|
2003-04-06 22:09:34 +04:00
|
|
|
switch (msg) {
|
2003-06-17 23:24:21 +04:00
|
|
|
case CONTENT_MSG_LOADING:
|
|
|
|
if (css->type != CONTENT_CSS) {
|
2003-07-15 02:57:45 +04:00
|
|
|
content_remove_user(css, css_atimport_callback, c, i);
|
2003-06-17 23:24:21 +04:00
|
|
|
c->data.css.import_content[i] = 0;
|
|
|
|
c->active--;
|
|
|
|
c->error = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_READY:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_DONE:
|
2003-04-06 22:09:34 +04:00
|
|
|
LOG(("got imported stylesheet '%s'", css->url));
|
|
|
|
/*css_dump_stylesheet(css->data.css);*/
|
|
|
|
c->active--;
|
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
case CONTENT_MSG_ERROR:
|
2003-04-06 22:09:34 +04:00
|
|
|
c->data.css.import_content[i] = 0;
|
|
|
|
c->active--;
|
|
|
|
c->error = 1;
|
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
case CONTENT_MSG_STATUS:
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
2003-06-26 15:41:26 +04:00
|
|
|
case CONTENT_MSG_REDIRECT:
|
|
|
|
c->active--;
|
|
|
|
free(c->data.css.import_url[i]);
|
|
|
|
c->data.css.import_url[i] = xstrdup(error);
|
|
|
|
c->data.css.import_content[i] = fetchcache(
|
|
|
|
c->data.css.import_url[i], c->url, css_atimport_callback,
|
2003-07-15 02:57:45 +04:00
|
|
|
c, i, css->width, css->height);
|
2003-07-16 21:38:46 +04:00
|
|
|
if (c->data.css.import_content[i] &&
|
|
|
|
c->data.css.import_content[i]->status != CONTENT_STATUS_DONE)
|
2003-06-26 15:41:26 +04:00
|
|
|
c->active++;
|
|
|
|
break;
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void css_get_style(struct content *c, struct css_selector * selector,
|
2003-04-04 19:19:32 +04:00
|
|
|
unsigned int selectors, struct css_style * style)
|
|
|
|
{
|
2003-04-06 22:09:34 +04:00
|
|
|
struct css_stylesheet *stylesheet = c->data.css.css;
|
2003-04-04 19:19:32 +04:00
|
|
|
struct node *r, *n, *m;
|
2003-04-06 01:38:06 +04:00
|
|
|
unsigned int hash, i, done_empty = 0;
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
/*LOG(("stylesheet '%s'", c->url));*/
|
2003-04-05 19:35:55 +04:00
|
|
|
|
|
|
|
hash = css_hash(selector[selectors - 1].element);
|
2003-04-06 01:38:06 +04:00
|
|
|
for (r = stylesheet->rule[hash]; ; r = r->next) {
|
|
|
|
if (r == 0 && !done_empty) {
|
|
|
|
r = stylesheet->rule[0];
|
|
|
|
done_empty = 1;
|
|
|
|
}
|
|
|
|
if (r == 0)
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
2003-04-04 19:19:32 +04:00
|
|
|
i = selectors - 1;
|
|
|
|
n = r;
|
|
|
|
/* compare element */
|
2003-04-06 01:38:06 +04:00
|
|
|
if (n->data != 0)
|
|
|
|
if (strcasecmp(selector[i].element, n->data) != 0)
|
|
|
|
goto not_matched;
|
2003-04-06 22:09:34 +04:00
|
|
|
/*LOG(("top element '%s' matched", selector[i].element));*/
|
2003-04-04 19:19:32 +04:00
|
|
|
while (1) {
|
|
|
|
/* class and id */
|
|
|
|
for (m = n->left; m != 0; m = m->next) {
|
|
|
|
if (m->type == NODE_ID) {
|
|
|
|
/* TODO: check if case sensitive */
|
2003-06-17 23:24:21 +04:00
|
|
|
if (selector[i].id == 0 ||
|
|
|
|
strcmp(selector[i].id, m->data + 1) != 0)
|
2003-04-04 19:19:32 +04:00
|
|
|
goto not_matched;
|
|
|
|
} else if (m->type == NODE_CLASS) {
|
|
|
|
/* TODO: check if case sensitive */
|
2003-06-17 23:24:21 +04:00
|
|
|
if (selector[i].class == 0 ||
|
|
|
|
strcmp(selector[i].class, m->data) != 0)
|
2003-04-04 19:19:32 +04:00
|
|
|
goto not_matched;
|
|
|
|
} else {
|
|
|
|
goto not_matched;
|
|
|
|
}
|
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
/*LOG(("class and id matched"));*/
|
2003-04-04 19:19:32 +04:00
|
|
|
/* ancestors etc. */
|
|
|
|
if (n->comb == COMB_NONE)
|
|
|
|
goto matched; /* match successful */
|
|
|
|
else if (n->comb == COMB_ANCESTOR) {
|
|
|
|
/* search for ancestor */
|
|
|
|
assert(n->right != 0);
|
|
|
|
n = n->right;
|
2003-04-06 01:38:06 +04:00
|
|
|
if (n->data == 0)
|
|
|
|
goto not_matched; /* TODO: handle this case */
|
2003-04-06 22:09:34 +04:00
|
|
|
/*LOG(("searching for ancestor '%s'", n->data));*/
|
2003-04-04 19:19:32 +04:00
|
|
|
while (i != 0 && strcasecmp(selector[i - 1].element, n->data) != 0)
|
|
|
|
i--;
|
|
|
|
if (i == 0)
|
|
|
|
goto not_matched;
|
|
|
|
i--;
|
2003-04-06 22:09:34 +04:00
|
|
|
/*LOG(("found"));*/
|
2003-04-04 19:19:32 +04:00
|
|
|
} else {
|
|
|
|
/* TODO: COMB_PRECEDED, COMB_PARENT */
|
|
|
|
goto not_matched;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
matched:
|
|
|
|
/* TODO: sort by specificity */
|
2003-04-06 22:09:34 +04:00
|
|
|
/*LOG(("matched rule %p", r));*/
|
2003-04-06 01:38:06 +04:00
|
|
|
css_merge(style, r->style);
|
2003-04-04 19:19:32 +04:00
|
|
|
|
|
|
|
not_matched:
|
|
|
|
|
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
|
|
|
|
/* imported stylesheets */
|
|
|
|
for (i = 0; i != c->data.css.import_count; i++)
|
|
|
|
if (c->data.css.import_content[i] != 0)
|
|
|
|
css_get_style(c->data.css.import_content[i], selector,
|
|
|
|
selectors, style);
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void css_parse_property_list(struct css_style * style, char * str)
|
|
|
|
{
|
2003-04-05 20:24:43 +04:00
|
|
|
yyscan_t lexer;
|
|
|
|
void *parser;
|
|
|
|
YY_BUFFER_STATE buffer;
|
|
|
|
int token;
|
|
|
|
struct parse_params param = {1, 0, 0};
|
|
|
|
|
|
|
|
css_lex_init(&lexer);
|
|
|
|
parser = css_parser_Alloc(malloc);
|
2003-04-25 12:03:15 +04:00
|
|
|
css_parser_(parser, LBRACE, xstrdup("{"), ¶m);
|
2003-04-05 20:24:43 +04:00
|
|
|
|
|
|
|
buffer = css__scan_string(str, lexer);
|
|
|
|
while ((token = css_lex(lexer))) {
|
|
|
|
css_parser_(parser, token,
|
2003-04-25 12:03:15 +04:00
|
|
|
xstrdup(css_get_text(lexer)),
|
2003-04-05 20:24:43 +04:00
|
|
|
¶m);
|
|
|
|
}
|
|
|
|
css__delete_buffer(buffer, lexer);
|
2003-04-25 12:03:15 +04:00
|
|
|
css_parser_(parser, RBRACE, xstrdup("}"), ¶m);
|
2003-04-05 20:24:43 +04:00
|
|
|
css_parser_(parser, 0, 0, ¶m);
|
|
|
|
|
|
|
|
css_parser_Free(parser, free);
|
|
|
|
css_lex_destroy(lexer);
|
|
|
|
|
|
|
|
css_add_declarations(style, param.declaration);
|
|
|
|
|
|
|
|
css_free_node(param.declaration);
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dump a style
|
|
|
|
*/
|
|
|
|
|
2003-04-06 01:38:06 +04:00
|
|
|
static void dump_length(const struct css_length * const length)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%g%s", length->value,
|
|
|
|
css_unit_name[length->unit]);
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
|
|
|
|
void css_dump_style(const struct css_style * const style)
|
|
|
|
{
|
2003-04-06 01:38:06 +04:00
|
|
|
fprintf(stderr, "{ ");
|
|
|
|
fprintf(stderr, "background-color: #%lx; ", style->background_color);
|
|
|
|
fprintf(stderr, "clear: %s; ", css_clear_name[style->clear]);
|
|
|
|
fprintf(stderr, "color: #%lx; ", style->color);
|
|
|
|
fprintf(stderr, "display: %s; ", css_display_name[style->display]);
|
|
|
|
fprintf(stderr, "float: %s; ", css_float_name[style->float_]);
|
|
|
|
fprintf(stderr, "font-size: ");
|
2003-04-04 19:19:32 +04:00
|
|
|
switch (style->font_size.size) {
|
2003-04-06 01:38:06 +04:00
|
|
|
case CSS_FONT_SIZE_ABSOLUTE: fprintf(stderr, "[%g]", style->font_size.value.absolute); break;
|
|
|
|
case CSS_FONT_SIZE_LENGTH: dump_length(&style->font_size.value.length); break;
|
|
|
|
case CSS_FONT_SIZE_PERCENT: fprintf(stderr, "%g%%", style->font_size.value.percent); break;
|
|
|
|
case CSS_FONT_SIZE_INHERIT: fprintf(stderr, "inherit"); break;
|
|
|
|
default: fprintf(stderr, "UNKNOWN"); break;
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
fprintf(stderr, "; ");
|
|
|
|
fprintf(stderr, "height: ");
|
2003-04-04 19:19:32 +04:00
|
|
|
switch (style->height.height) {
|
2003-04-06 01:38:06 +04:00
|
|
|
case CSS_HEIGHT_AUTO: fprintf(stderr, "auto"); break;
|
|
|
|
case CSS_HEIGHT_LENGTH: dump_length(&style->height.length); break;
|
|
|
|
default: fprintf(stderr, "UNKNOWN"); break;
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
fprintf(stderr, "; ");
|
|
|
|
fprintf(stderr, "line-height: ");
|
2003-04-04 19:19:32 +04:00
|
|
|
switch (style->line_height.size) {
|
2003-04-06 01:38:06 +04:00
|
|
|
case CSS_LINE_HEIGHT_ABSOLUTE: fprintf(stderr, "[%g]", style->line_height.value.absolute); break;
|
|
|
|
case CSS_LINE_HEIGHT_LENGTH: dump_length(&style->line_height.value.length); break;
|
|
|
|
case CSS_LINE_HEIGHT_PERCENT: fprintf(stderr, "%g%%", style->line_height.value.percent); break;
|
|
|
|
case CSS_LINE_HEIGHT_INHERIT: fprintf(stderr, "inherit"); break;
|
|
|
|
default: fprintf(stderr, "UNKNOWN"); break;
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
fprintf(stderr, "; ");
|
|
|
|
fprintf(stderr, "text-align: %s; ", css_text_align_name[style->text_align]);
|
|
|
|
fprintf(stderr, "width: ");
|
2003-04-04 19:19:32 +04:00
|
|
|
switch (style->width.width) {
|
2003-04-06 01:38:06 +04:00
|
|
|
case CSS_WIDTH_AUTO: fprintf(stderr, "auto"); break;
|
|
|
|
case CSS_WIDTH_LENGTH: dump_length(&style->width.value.length); break;
|
|
|
|
case CSS_WIDTH_PERCENT: fprintf(stderr, "%g%%", style->width.value.percent); break;
|
|
|
|
default: fprintf(stderr, "UNKNOWN"); break;
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
fprintf(stderr, "; ");
|
|
|
|
fprintf(stderr, "}");
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void css_dump_stylesheet(const struct css_stylesheet * stylesheet)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2003-04-06 01:38:06 +04:00
|
|
|
struct node *r, *n, *m;
|
|
|
|
for (i = 0; i != HASH_SIZE; i++) {
|
|
|
|
fprintf(stderr, "hash %i:\n", i);
|
|
|
|
for (r = stylesheet->rule[i]; r != 0; r = r->next) {
|
|
|
|
for (n = r; n != 0; n = n->right) {
|
|
|
|
if (n->data != 0)
|
|
|
|
fprintf(stderr, "%s", n->data);
|
|
|
|
for (m = n->left; m != 0; m = m->next) {
|
|
|
|
switch (m->type) {
|
|
|
|
case NODE_ID: fprintf(stderr, "%s", m->data); break;
|
|
|
|
case NODE_CLASS: fprintf(stderr, ".%s", m->data); break;
|
|
|
|
default: fprintf(stderr, "unexpected node");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
}
|
|
|
|
css_dump_style(r->style);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
/**
|
|
|
|
* cascade styles
|
|
|
|
*/
|
|
|
|
|
|
|
|
void css_cascade(struct css_style * const style, const struct css_style * const apply)
|
|
|
|
{
|
|
|
|
float f;
|
|
|
|
|
|
|
|
if (apply->background_color != CSS_COLOR_INHERIT)
|
|
|
|
style->background_color = apply->background_color;
|
|
|
|
if (apply->clear != CSS_CLEAR_INHERIT)
|
|
|
|
style->clear = apply->clear;
|
|
|
|
if (apply->color != CSS_COLOR_INHERIT)
|
|
|
|
style->color = apply->color;
|
|
|
|
if (apply->display != CSS_DISPLAY_INHERIT)
|
|
|
|
style->display = apply->display;
|
|
|
|
if (apply->float_ != CSS_FLOAT_INHERIT)
|
|
|
|
style->float_ = apply->float_;
|
|
|
|
if (apply->height.height != CSS_HEIGHT_INHERIT)
|
|
|
|
style->height = apply->height;
|
|
|
|
if (apply->text_align != CSS_TEXT_ALIGN_INHERIT)
|
|
|
|
style->text_align = apply->text_align;
|
|
|
|
if (apply->width.width != CSS_WIDTH_INHERIT)
|
|
|
|
style->width = apply->width;
|
|
|
|
if (apply->font_weight != CSS_FONT_WEIGHT_INHERIT)
|
|
|
|
style->font_weight = apply->font_weight;
|
|
|
|
if (apply->font_style != CSS_FONT_STYLE_INHERIT)
|
|
|
|
style->font_style = apply->font_style;
|
|
|
|
|
|
|
|
/* font-size */
|
|
|
|
f = apply->font_size.value.percent / 100;
|
|
|
|
switch (apply->font_size.size) {
|
|
|
|
case CSS_FONT_SIZE_ABSOLUTE:
|
|
|
|
style->font_size = apply->font_size;
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_LENGTH:
|
|
|
|
switch (apply->font_size.value.length.unit) {
|
|
|
|
case CSS_UNIT_EM:
|
|
|
|
f = apply->font_size.value.length.value;
|
|
|
|
break;
|
|
|
|
case CSS_UNIT_EX:
|
|
|
|
f = apply->font_size.value.length.value * 0.6 /*?*/;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
style->font_size = apply->font_size;
|
|
|
|
}
|
|
|
|
if ((apply->font_size.value.length.unit != CSS_UNIT_EM) &&
|
|
|
|
(apply->font_size.value.length.unit != CSS_UNIT_EX))
|
|
|
|
break;
|
|
|
|
/* drop through if EM or EX */
|
|
|
|
case CSS_FONT_SIZE_PERCENT:
|
|
|
|
switch (style->font_size.size) {
|
|
|
|
case CSS_FONT_SIZE_ABSOLUTE:
|
|
|
|
style->font_size.value.absolute *= f;
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_LENGTH:
|
|
|
|
style->font_size.value.length.value *= f;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
die("attempting percentage of unknown font-size");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_INHERIT:
|
|
|
|
default: /* leave unchanged */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-06 01:38:06 +04:00
|
|
|
void css_merge(struct css_style * const style, const struct css_style * const apply)
|
|
|
|
{
|
|
|
|
if (apply->background_color != CSS_COLOR_INHERIT)
|
|
|
|
style->background_color = apply->background_color;
|
|
|
|
if (apply->clear != CSS_CLEAR_INHERIT)
|
|
|
|
style->clear = apply->clear;
|
|
|
|
if (apply->color != CSS_COLOR_INHERIT)
|
|
|
|
style->color = apply->color;
|
|
|
|
if (apply->display != CSS_DISPLAY_INHERIT)
|
|
|
|
style->display = apply->display;
|
|
|
|
if (apply->float_ != CSS_FLOAT_INHERIT)
|
|
|
|
style->float_ = apply->float_;
|
|
|
|
if (apply->height.height != CSS_HEIGHT_INHERIT)
|
|
|
|
style->height = apply->height;
|
|
|
|
if (apply->text_align != CSS_TEXT_ALIGN_INHERIT)
|
|
|
|
style->text_align = apply->text_align;
|
|
|
|
if (apply->width.width != CSS_WIDTH_INHERIT)
|
|
|
|
style->width = apply->width;
|
|
|
|
if (apply->font_weight != CSS_FONT_WEIGHT_INHERIT)
|
|
|
|
style->font_weight = apply->font_weight;
|
|
|
|
if (apply->font_style != CSS_FONT_STYLE_INHERIT)
|
|
|
|
style->font_style = apply->font_style;
|
|
|
|
if (apply->font_size.size != CSS_FONT_SIZE_INHERIT)
|
|
|
|
style->font_size = apply->font_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-04-05 19:35:55 +04:00
|
|
|
unsigned int css_hash(const char *s)
|
|
|
|
{
|
|
|
|
unsigned int z = 0;
|
2003-04-06 01:38:06 +04:00
|
|
|
if (s == 0)
|
|
|
|
return 0;
|
2003-04-05 19:35:55 +04:00
|
|
|
for (; *s != 0; s++)
|
2003-07-02 18:30:53 +04:00
|
|
|
z += *s & 0x1f; /* lower 5 bits, case insensitive */
|
2003-04-06 01:38:06 +04:00
|
|
|
return (z % (HASH_SIZE - 1)) + 1;
|
2003-04-05 19:35:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-10 01:33:01 +04:00
|
|
|
/**
|
|
|
|
* convert a struct css_length to pixels
|
|
|
|
*/
|
|
|
|
|
|
|
|
signed long len(struct css_length * length, struct css_style * style)
|
|
|
|
{
|
|
|
|
assert(!((length->unit == CSS_UNIT_EM || length->unit == CSS_UNIT_EX) && style == 0));
|
|
|
|
switch (length->unit) {
|
|
|
|
case CSS_UNIT_EM: return length->value * len(&style->font_size.value.length, 0);
|
|
|
|
case CSS_UNIT_EX: return length->value * len(&style->font_size.value.length, 0) * 0.6;
|
|
|
|
case CSS_UNIT_PX: return length->value;
|
|
|
|
case CSS_UNIT_IN: return length->value * 90.0;
|
|
|
|
case CSS_UNIT_CM: return length->value * 35.0;
|
|
|
|
case CSS_UNIT_MM: return length->value * 3.5;
|
|
|
|
case CSS_UNIT_PT: return length->value * 90.0 / 72.0;
|
|
|
|
case CSS_UNIT_PC: return length->value * 90.0 / 6.0;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-04-05 19:35:55 +04:00
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
const char data[] = "h1 { blah: foo; display: block; }"
|
|
|
|
"h1.c1 h2#id1 + h3, h4 h5.c2#id2 { size: 100mm; color: red }"
|
|
|
|
"p { background-color: #123; clear: left; color: #ff0000; display: block;"
|
|
|
|
"float: left; font-size: 150%; height: blah; line-height: 100;"
|
|
|
|
"text-align: left right; width: 90%;}";
|
|
|
|
struct content c;
|
|
|
|
css_create(&c);
|
|
|
|
css_process_data(&c, data, 24);
|
|
|
|
css_process_data(&c, data + 24, sizeof(data) - 25);
|
|
|
|
css_convert(&c, 100, 100);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|