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-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2003-04-06 01:38:06 +04:00
|
|
|
#include <strings.h>
|
2003-02-09 15:58:15 +03:00
|
|
|
#include <stdlib.h>
|
2003-06-17 23:24:21 +04:00
|
|
|
#include "netsurf/content/content.h"
|
2003-04-04 19:19:32 +04:00
|
|
|
#include "netsurf/content/fetch.h"
|
|
|
|
#include "netsurf/content/fetchcache.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#ifdef riscos
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/desktop/gui.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#endif
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/render/html.h"
|
|
|
|
#include "netsurf/render/layout.h"
|
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
#include "netsurf/utils/log.h"
|
|
|
|
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
static void html_convert_css_callback(content_msg msg, struct content *css,
|
|
|
|
void *p1, void *p2, const char *error);
|
2003-04-11 01:44:45 +04:00
|
|
|
static void html_title(struct content *c, xmlNode *head);
|
|
|
|
static void html_find_stylesheets(struct content *c, xmlNode *head);
|
2003-06-17 23:24:21 +04:00
|
|
|
static void html_object_callback(content_msg msg, struct content *object,
|
|
|
|
void *p1, void *p2, const char *error);
|
2003-02-09 15:58:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
void html_create(struct content *c)
|
|
|
|
{
|
|
|
|
c->data.html.parser = htmlCreatePushParserCtxt(0, 0, "", 0, 0, XML_CHAR_ENCODING_8859_1);
|
|
|
|
c->data.html.layout = NULL;
|
|
|
|
c->data.html.style = NULL;
|
|
|
|
c->data.html.fonts = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define CHUNK 4096
|
|
|
|
|
|
|
|
void html_process_data(struct content *c, char *data, unsigned long size)
|
|
|
|
{
|
|
|
|
unsigned long x;
|
2003-06-17 23:24:21 +04:00
|
|
|
LOG(("content %s, size %lu", c->url, size));
|
|
|
|
cache_dump();
|
2003-02-26 21:22:24 +03:00
|
|
|
for (x = 0; x + CHUNK <= size; x += CHUNK) {
|
2003-02-09 15:58:15 +03:00
|
|
|
htmlParseChunk(c->data.html.parser, data + x, CHUNK, 0);
|
|
|
|
gui_multitask();
|
|
|
|
}
|
2003-03-04 14:59:36 +03:00
|
|
|
htmlParseChunk(c->data.html.parser, data + x, (int) (size - x), 0);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int html_convert(struct content *c, unsigned int width, unsigned int height)
|
|
|
|
{
|
2003-04-06 01:38:06 +04:00
|
|
|
unsigned int i;
|
2003-04-11 01:44:45 +04:00
|
|
|
xmlDoc *document;
|
|
|
|
xmlNode *html, *head;
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2003-04-11 01:44:45 +04:00
|
|
|
/* finish parsing */
|
2003-02-09 15:58:15 +03:00
|
|
|
htmlParseChunk(c->data.html.parser, "", 0, 1);
|
2003-04-11 01:44:45 +04:00
|
|
|
document = c->data.html.parser->myDoc;
|
2003-02-09 15:58:15 +03:00
|
|
|
/*xmlDebugDumpDocument(stderr, c->data.html.parser->myDoc);*/
|
2003-04-11 01:44:45 +04:00
|
|
|
htmlFreeParserCtxt(c->data.html.parser);
|
|
|
|
if (document == NULL) {
|
|
|
|
LOG(("Parsing failed"));
|
2003-02-09 15:58:15 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-04-11 01:44:45 +04:00
|
|
|
/* locate html and head elements */
|
|
|
|
for (html = document->children;
|
|
|
|
html != 0 && html->type != XML_ELEMENT_NODE;
|
|
|
|
html = html->next)
|
|
|
|
;
|
|
|
|
if (html == 0 || strcmp((const char *) html->name, "html") != 0) {
|
|
|
|
LOG(("html element not found"));
|
|
|
|
xmlFreeDoc(document);
|
2003-02-09 15:58:15 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2003-04-11 01:44:45 +04:00
|
|
|
for (head = html->children;
|
|
|
|
head != 0 && head->type != XML_ELEMENT_NODE;
|
|
|
|
head = head->next)
|
|
|
|
;
|
2003-04-12 01:06:51 +04:00
|
|
|
if (strcmp((const char *) head->name, "head") != 0) {
|
|
|
|
head = 0;
|
2003-04-11 01:44:45 +04:00
|
|
|
LOG(("head element not found"));
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
2003-04-11 01:44:45 +04:00
|
|
|
|
2003-04-12 01:06:51 +04:00
|
|
|
if (head != 0)
|
|
|
|
html_title(c, head);
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2003-04-06 01:38:06 +04:00
|
|
|
/* get stylesheets */
|
2003-04-13 16:50:10 +04:00
|
|
|
html_find_stylesheets(c, head);
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
/* convert xml tree to box tree */
|
2003-02-09 15:58:15 +03:00
|
|
|
LOG(("XML to box"));
|
2003-07-10 01:33:01 +04:00
|
|
|
sprintf(c->status_message, "Processing document");
|
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
2003-04-15 21:53:00 +04:00
|
|
|
xml_to_box(html, c);
|
2003-03-26 00:51:29 +03:00
|
|
|
/*box_dump(c->data.html.layout->children, 0);*/
|
2003-04-12 01:06:51 +04:00
|
|
|
|
|
|
|
/* XML tree and stylesheets not required past this point */
|
2003-04-11 01:44:45 +04:00
|
|
|
xmlFreeDoc(document);
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
content_remove_user(c->data.html.stylesheet_content[0],
|
2003-07-15 02:57:45 +04:00
|
|
|
html_convert_css_callback, c, 0);
|
2003-04-13 16:50:10 +04:00
|
|
|
if (c->data.html.stylesheet_content[1] != 0)
|
|
|
|
content_destroy(c->data.html.stylesheet_content[1]);
|
|
|
|
for (i = 2; i != c->data.html.stylesheet_count; i++)
|
2003-04-12 01:06:51 +04:00
|
|
|
if (c->data.html.stylesheet_content[i] != 0)
|
2003-06-17 23:24:21 +04:00
|
|
|
content_remove_user(c->data.html.stylesheet_content[i],
|
2003-07-15 02:57:45 +04:00
|
|
|
html_convert_css_callback, c, i);
|
2003-04-12 01:06:51 +04:00
|
|
|
xfree(c->data.html.stylesheet_content);
|
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
/* layout the box tree */
|
2003-07-10 01:33:01 +04:00
|
|
|
sprintf(c->status_message, "Formatting document");
|
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
2003-02-09 15:58:15 +03:00
|
|
|
LOG(("Layout document"));
|
|
|
|
layout_document(c->data.html.layout->children, width);
|
2003-03-26 00:51:29 +03:00
|
|
|
/*box_dump(c->data.html.layout->children, 0);*/
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2003-02-26 00:00:27 +03:00
|
|
|
c->width = c->data.html.layout->children->width;
|
|
|
|
c->height = c->data.html.layout->children->height;
|
2003-04-15 21:53:00 +04:00
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->active == 0)
|
|
|
|
c->status = CONTENT_STATUS_DONE;
|
|
|
|
else
|
|
|
|
c->status = CONTENT_STATUS_READY;
|
2003-06-05 17:17:55 +04:00
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
void html_convert_css_callback(content_msg msg, struct content *css,
|
|
|
|
void *p1, void *p2, const char *error)
|
2003-04-04 19:19:32 +04:00
|
|
|
{
|
2003-06-17 23:24:21 +04:00
|
|
|
struct content *c = p1;
|
|
|
|
unsigned int i = (unsigned int) p2;
|
2003-04-04 19:19:32 +04:00
|
|
|
switch (msg) {
|
2003-06-17 23:24:21 +04:00
|
|
|
case CONTENT_MSG_LOADING:
|
|
|
|
/* check that the stylesheet is really CSS */
|
|
|
|
if (css->type != CONTENT_CSS) {
|
|
|
|
c->data.html.stylesheet_content[i] = 0;
|
|
|
|
c->active--;
|
|
|
|
c->error = 1;
|
|
|
|
sprintf(c->status_message, "Warning: stylesheet is not CSS");
|
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
2003-07-15 02:57:45 +04:00
|
|
|
content_remove_user(css, html_convert_css_callback, c, i);
|
2003-06-17 23:24:21 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_READY:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_DONE:
|
2003-04-13 16:50:10 +04:00
|
|
|
LOG(("got stylesheet '%s'", css->url));
|
2003-04-04 19:19:32 +04:00
|
|
|
c->active--;
|
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
case CONTENT_MSG_ERROR:
|
2003-04-06 01:38:06 +04:00
|
|
|
c->data.html.stylesheet_content[i] = 0;
|
2003-04-04 19:19:32 +04:00
|
|
|
c->active--;
|
|
|
|
c->error = 1;
|
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
case CONTENT_MSG_STATUS:
|
2003-07-02 18:31:11 +04:00
|
|
|
snprintf(c->status_message, 80, "Loading %u stylesheets: %s",
|
2003-06-17 23:24:21 +04:00
|
|
|
c->active, css->status_message);
|
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
2003-04-04 19:19:32 +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--;
|
|
|
|
c->data.html.stylesheet_content[i] = fetchcache(
|
|
|
|
error, c->url, html_convert_css_callback,
|
2003-07-15 02:57:45 +04:00
|
|
|
c, i, css->width, css->height);
|
2003-06-26 15:41:26 +04:00
|
|
|
if (c->data.html.stylesheet_content[i]->status != CONTENT_STATUS_DONE)
|
|
|
|
c->active++;
|
2003-07-08 02:10:51 +04:00
|
|
|
break;
|
2003-06-26 15:41:26 +04:00
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-11 01:44:45 +04:00
|
|
|
void html_title(struct content *c, xmlNode *head)
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
2003-04-06 01:38:06 +04:00
|
|
|
xmlNode *node;
|
2003-04-12 01:06:51 +04:00
|
|
|
xmlChar *title;
|
2003-02-09 15:58:15 +03:00
|
|
|
|
|
|
|
c->title = 0;
|
|
|
|
|
2003-04-06 01:38:06 +04:00
|
|
|
for (node = head->children; node != 0; node = node->next) {
|
|
|
|
if (strcmp(node->name, "title") == 0) {
|
2003-04-12 01:06:51 +04:00
|
|
|
title = xmlNodeGetContent(node);
|
|
|
|
c->title = squash_tolat1(title);
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(title);
|
2003-04-06 01:38:06 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-11 01:44:45 +04:00
|
|
|
void html_find_stylesheets(struct content *c, xmlNode *head)
|
2003-04-06 01:38:06 +04:00
|
|
|
{
|
2003-04-15 21:53:00 +04:00
|
|
|
xmlNode *node, *node2;
|
2003-04-13 16:50:10 +04:00
|
|
|
char *rel, *type, *media, *href, *data, *url;
|
|
|
|
unsigned int i = 2;
|
2003-06-17 23:24:21 +04:00
|
|
|
unsigned int last_active = 0;
|
2003-04-13 16:50:10 +04:00
|
|
|
|
|
|
|
/* stylesheet 0 is the base style sheet, stylesheet 1 is any <style> elements */
|
|
|
|
c->data.html.stylesheet_content = xcalloc(2, sizeof(*c->data.html.stylesheet_content));
|
|
|
|
c->data.html.stylesheet_content[1] = 0;
|
|
|
|
c->data.html.stylesheet_count = 2;
|
2003-04-06 01:38:06 +04:00
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
c->error = 0;
|
|
|
|
c->active = 0;
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
c->data.html.stylesheet_content[0] = fetchcache(
|
|
|
|
#ifdef riscos
|
|
|
|
"file:///%3CNetSurf$Dir%3E/Resources/CSS",
|
|
|
|
#else
|
|
|
|
"file:///home/james/Projects/netsurf/CSS",
|
|
|
|
#endif
|
|
|
|
c->url,
|
2003-04-13 16:50:10 +04:00
|
|
|
html_convert_css_callback,
|
2003-07-15 02:57:45 +04:00
|
|
|
c, 0, c->width, c->height);
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->data.html.stylesheet_content[0]->status != CONTENT_STATUS_DONE)
|
|
|
|
c->active++;
|
2003-04-06 01:38:06 +04:00
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
for (node = head == 0 ? 0 : head->children; node != 0; node = node->next) {
|
2003-04-06 01:38:06 +04:00
|
|
|
if (strcmp(node->name, "link") == 0) {
|
|
|
|
/* rel='stylesheet' */
|
|
|
|
if (!(rel = (char *) xmlGetProp(node, (const xmlChar *) "rel")))
|
|
|
|
continue;
|
|
|
|
if (strcasecmp(rel, "stylesheet") != 0) {
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(rel);
|
2003-02-09 15:58:15 +03:00
|
|
|
continue;
|
|
|
|
}
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(rel);
|
2003-04-06 01:38:06 +04:00
|
|
|
|
2003-04-12 01:06:51 +04:00
|
|
|
/* type='text/css' or not present */
|
|
|
|
if ((type = (char *) xmlGetProp(node, (const xmlChar *) "type"))) {
|
|
|
|
if (strcmp(type, "text/css") != 0) {
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(type);
|
2003-04-12 01:06:51 +04:00
|
|
|
continue;
|
|
|
|
}
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(type);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
|
2003-04-12 01:06:51 +04:00
|
|
|
/* media contains 'screen' or 'all' or not present */
|
2003-04-06 01:38:06 +04:00
|
|
|
if ((media = (char *) xmlGetProp(node, (const xmlChar *) "media"))) {
|
2003-04-12 01:06:51 +04:00
|
|
|
if (strstr(media, "screen") == 0 &&
|
|
|
|
strstr(media, "all") == 0) {
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(media);
|
2003-04-06 01:38:06 +04:00
|
|
|
continue;
|
|
|
|
}
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(media);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
2003-06-05 17:17:55 +04:00
|
|
|
|
2003-04-06 01:38:06 +04:00
|
|
|
/* href='...' */
|
|
|
|
if (!(href = (char *) xmlGetProp(node, (const xmlChar *) "href")))
|
|
|
|
continue;
|
|
|
|
|
2003-06-30 16:44:03 +04:00
|
|
|
/* TODO: only the first preferred stylesheets (ie. those with a
|
|
|
|
* title attribute) should be loaded (see HTML4 14.3) */
|
|
|
|
|
2003-04-13 16:50:10 +04:00
|
|
|
url = url_join(href, c->url);
|
|
|
|
LOG(("linked stylesheet %i '%s'", i, url));
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(href);
|
2003-04-13 16:50:10 +04:00
|
|
|
|
|
|
|
/* start fetch */
|
|
|
|
c->data.html.stylesheet_content = xrealloc(c->data.html.stylesheet_content,
|
|
|
|
(i + 1) * sizeof(*c->data.html.stylesheet_content));
|
2003-06-17 23:24:21 +04:00
|
|
|
c->data.html.stylesheet_content[i] = fetchcache(url, c->url,
|
|
|
|
html_convert_css_callback, c, i,
|
2003-07-15 02:57:45 +04:00
|
|
|
c->width, c->height);
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->data.html.stylesheet_content[i]->status != CONTENT_STATUS_DONE)
|
|
|
|
c->active++;
|
2003-04-13 16:50:10 +04:00
|
|
|
free(url);
|
|
|
|
i++;
|
|
|
|
|
|
|
|
} else if (strcmp(node->name, "style") == 0) {
|
2003-06-17 23:24:21 +04:00
|
|
|
/* type='text/css', or not present (invalid but common) */
|
|
|
|
if ((type = (char *) xmlGetProp(node, (const xmlChar *) "type"))) {
|
|
|
|
if (strcmp(type, "text/css") != 0) {
|
|
|
|
xmlFree(type);
|
|
|
|
continue;
|
|
|
|
}
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(type);
|
2003-04-13 16:50:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* media contains 'screen' or 'all' or not present */
|
|
|
|
if ((media = (char *) xmlGetProp(node, (const xmlChar *) "media"))) {
|
|
|
|
if (strstr(media, "screen") == 0 &&
|
|
|
|
strstr(media, "all") == 0) {
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(media);
|
2003-04-13 16:50:10 +04:00
|
|
|
continue;
|
|
|
|
}
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(media);
|
2003-04-13 16:50:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create stylesheet */
|
|
|
|
LOG(("style element"));
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->data.html.stylesheet_content[1] == 0) {
|
|
|
|
c->data.html.stylesheet_content[1] = content_create(c->url);
|
2003-07-08 02:10:51 +04:00
|
|
|
content_set_type(c->data.html.stylesheet_content[1], CONTENT_CSS, "text/css");
|
2003-06-17 23:24:21 +04:00
|
|
|
}
|
2003-04-15 21:53:00 +04:00
|
|
|
|
|
|
|
/* can't just use xmlNodeGetContent(node), because that won't give
|
|
|
|
* the content of comments which may be used to 'hide' the content */
|
|
|
|
for (node2 = node->children; node2 != 0; node2 = node2->next) {
|
|
|
|
data = xmlNodeGetContent(node2);
|
|
|
|
content_process_data(c->data.html.stylesheet_content[1],
|
|
|
|
data, strlen(data));
|
2003-04-25 12:03:15 +04:00
|
|
|
xmlFree(data);
|
2003-04-15 21:53:00 +04:00
|
|
|
}
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
|
2003-04-13 16:50:10 +04:00
|
|
|
c->data.html.stylesheet_count = i;
|
|
|
|
|
|
|
|
if (c->data.html.stylesheet_content[1] != 0)
|
|
|
|
content_convert(c->data.html.stylesheet_content[1], c->width, c->height);
|
2003-04-15 21:53:00 +04:00
|
|
|
|
|
|
|
/* complete the fetches */
|
|
|
|
while (c->active != 0) {
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->active != last_active) {
|
|
|
|
sprintf(c->status_message, "Loading %u stylesheets", c->active);
|
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
|
|
|
last_active = c->active;
|
2003-04-15 21:53:00 +04:00
|
|
|
}
|
|
|
|
fetch_poll();
|
|
|
|
gui_multitask();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->error) {
|
2003-06-17 23:24:21 +04:00
|
|
|
sprintf(c->status_message, "Warning: some stylesheets failed to load");
|
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
2003-04-15 21:53:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
void html_fetch_object(struct content *c, char *url, struct box *box)
|
2003-04-15 21:53:00 +04:00
|
|
|
{
|
|
|
|
struct fetch_data *fetch_data;
|
2003-06-17 23:24:21 +04:00
|
|
|
unsigned int i = c->data.html.object_count;
|
2003-06-05 17:17:55 +04:00
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
/* add to object list */
|
|
|
|
c->data.html.object = xrealloc(c->data.html.object,
|
2003-06-17 23:24:21 +04:00
|
|
|
(i + 1) * sizeof(*c->data.html.object));
|
|
|
|
c->data.html.object[i].url = url;
|
|
|
|
c->data.html.object[i].box = box;
|
2003-04-15 21:53:00 +04:00
|
|
|
|
|
|
|
/* start fetch */
|
2003-06-17 23:24:21 +04:00
|
|
|
c->data.html.object[i].content = fetchcache(url, c->url,
|
|
|
|
html_object_callback,
|
2003-07-15 02:57:45 +04:00
|
|
|
c, i, 0, 0);
|
2003-06-30 19:56:35 +04:00
|
|
|
c->active++;
|
|
|
|
if (c->data.html.object[i].content->status == CONTENT_STATUS_DONE)
|
|
|
|
html_object_callback(CONTENT_MSG_DONE,
|
|
|
|
c->data.html.object[i].content, c, i, 0);
|
2003-04-15 21:53:00 +04:00
|
|
|
c->data.html.object_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
void html_object_callback(content_msg msg, struct content *object,
|
|
|
|
void *p1, void *p2, const char *error)
|
2003-04-15 21:53:00 +04:00
|
|
|
{
|
2003-06-17 23:24:21 +04:00
|
|
|
struct content *c = p1;
|
|
|
|
unsigned int i = (unsigned int) p2;
|
2003-04-15 21:53:00 +04:00
|
|
|
struct box *box = c->data.html.object[i].box;
|
|
|
|
switch (msg) {
|
2003-06-17 23:24:21 +04:00
|
|
|
case CONTENT_MSG_LOADING:
|
|
|
|
if (CONTENT_OTHER <= c->type) {
|
|
|
|
c->data.html.object[i].content = 0;
|
|
|
|
c->active--;
|
|
|
|
c->error = 1;
|
|
|
|
sprintf(c->status_message, "Warning: bad object type");
|
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
2003-07-15 02:57:45 +04:00
|
|
|
content_remove_user(object, html_object_callback, c, i);
|
2003-06-17 23:24:21 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_READY:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_DONE:
|
|
|
|
LOG(("got object '%s'", object->url));
|
|
|
|
box->object = object;
|
2003-04-15 21:53:00 +04:00
|
|
|
/* set dimensions to object dimensions if auto */
|
|
|
|
if (box->style->width.width == CSS_WIDTH_AUTO) {
|
|
|
|
box->style->width.width = CSS_WIDTH_LENGTH;
|
|
|
|
box->style->width.value.length.unit = CSS_UNIT_PX;
|
2003-06-17 23:24:21 +04:00
|
|
|
box->style->width.value.length.value = object->width;
|
|
|
|
box->min_width = box->max_width = box->width = object->width;
|
2003-04-15 21:53:00 +04:00
|
|
|
/* invalidate parent min, max widths */
|
|
|
|
if (box->parent->max_width != UNKNOWN_MAX_WIDTH) {
|
|
|
|
struct box *b = box->parent;
|
2003-06-17 23:24:21 +04:00
|
|
|
if (b->min_width < object->width)
|
|
|
|
b->min_width = object->width;
|
|
|
|
if (b->max_width < object->width)
|
|
|
|
b->max_width = object->width;
|
2003-04-15 21:53:00 +04:00
|
|
|
for (b = b->parent;
|
|
|
|
b != 0 && b->max_width != UNKNOWN_MAX_WIDTH;
|
|
|
|
b = b->parent)
|
|
|
|
b->max_width = UNKNOWN_MAX_WIDTH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (box->style->height.height == CSS_HEIGHT_AUTO) {
|
|
|
|
box->style->height.height = CSS_HEIGHT_LENGTH;
|
|
|
|
box->style->height.length.unit = CSS_UNIT_PX;
|
2003-06-17 23:24:21 +04:00
|
|
|
box->style->height.length.value = object->height;
|
2003-04-15 21:53:00 +04:00
|
|
|
}
|
|
|
|
/* remove alt text */
|
|
|
|
if (box->text != 0) {
|
|
|
|
free(box->text);
|
|
|
|
box->text = 0;
|
|
|
|
box->length = 0;
|
|
|
|
}
|
|
|
|
/*if (box->children != 0) {
|
|
|
|
box_free(box->children);
|
|
|
|
box->children = 0;
|
|
|
|
}*/
|
|
|
|
/* TODO: recalculate min, max width */
|
|
|
|
c->active--;
|
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
case CONTENT_MSG_ERROR:
|
|
|
|
c->data.html.object[i].content = 0;
|
|
|
|
c->active--;
|
|
|
|
c->error = 1;
|
2003-07-02 18:31:11 +04:00
|
|
|
snprintf(c->status_message, 80, "Image error: %s", error);
|
2003-06-17 23:24:21 +04:00
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_STATUS:
|
2003-07-02 18:31:11 +04:00
|
|
|
snprintf(c->status_message, 80, "Loading %i objects: %s",
|
2003-06-17 23:24:21 +04:00
|
|
|
c->active, object->status_message);
|
2003-06-30 19:56:35 +04:00
|
|
|
content_broadcast(c, CONTENT_MSG_STATUS, 0);
|
2003-04-15 21:53:00 +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.html.object[i].url);
|
|
|
|
c->data.html.object[i].url = xstrdup(error);
|
|
|
|
c->data.html.object[i].content = fetchcache(
|
|
|
|
error, c->url, html_object_callback,
|
2003-07-15 02:57:45 +04:00
|
|
|
c, i, 0, 0);
|
2003-06-26 15:41:26 +04:00
|
|
|
if (c->data.html.object[i].content->status != CONTENT_STATUS_DONE)
|
|
|
|
c->active++;
|
2003-07-08 02:10:51 +04:00
|
|
|
break;
|
2003-06-26 15:41:26 +04:00
|
|
|
|
2003-04-15 21:53:00 +04:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
LOG(("%i active", c->active));
|
2003-06-30 19:56:35 +04:00
|
|
|
if (c->status == CONTENT_STATUS_READY && c->active == 0) {
|
2003-06-17 23:24:21 +04:00
|
|
|
/* all objects have arrived */
|
|
|
|
content_reformat(c, c->available_width, 0);
|
|
|
|
c->status = CONTENT_STATUS_DONE;
|
2003-06-30 19:56:35 +04:00
|
|
|
sprintf(c->status_message, "Document done");
|
2003-06-17 23:24:21 +04:00
|
|
|
content_broadcast(c, CONTENT_MSG_DONE, 0);
|
|
|
|
}
|
2003-06-30 19:56:35 +04:00
|
|
|
if (c->status == CONTENT_STATUS_READY)
|
2003-06-17 23:24:21 +04:00
|
|
|
sprintf(c->status_message, "Loading %i objects", c->active);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-15 02:57:45 +04:00
|
|
|
void html_add_instance(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state)
|
|
|
|
{
|
2003-07-15 03:13:23 +04:00
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i != c->data.html.object_count; i++) {
|
2003-07-15 02:57:45 +04:00
|
|
|
if (c->data.html.object[i].content == 0)
|
|
|
|
continue;
|
|
|
|
content_add_instance(c->data.html.object[i].content,
|
|
|
|
bw, c,
|
|
|
|
c->data.html.object[i].box,
|
|
|
|
c->data.html.object[i].box->object_params,
|
|
|
|
&c->data.html.object[i].box->object_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void html_remove_instance(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state)
|
|
|
|
{
|
2003-07-15 03:13:23 +04:00
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i != c->data.html.object_count; i++) {
|
2003-07-15 02:57:45 +04:00
|
|
|
if (c->data.html.object[i].content == 0)
|
|
|
|
continue;
|
|
|
|
content_remove_instance(c->data.html.object[i].content,
|
|
|
|
bw, c,
|
|
|
|
c->data.html.object[i].box,
|
|
|
|
c->data.html.object[i].box->object_params,
|
|
|
|
&c->data.html.object[i].box->object_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
void html_revive(struct content *c, unsigned int width, unsigned int height)
|
|
|
|
{
|
2003-04-15 21:53:00 +04:00
|
|
|
unsigned int i;
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
/* reload objects and fix pointers */
|
2003-04-15 21:53:00 +04:00
|
|
|
for (i = 0; i != c->data.html.object_count; i++) {
|
|
|
|
if (c->data.html.object[i].content != 0) {
|
2003-06-17 23:24:21 +04:00
|
|
|
c->data.html.object[i].content = fetchcache(
|
|
|
|
c->data.html.object[i].url, c->url,
|
|
|
|
html_object_callback,
|
2003-07-15 02:57:45 +04:00
|
|
|
c, i, 0, 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->data.html.object[i].content->status != CONTENT_STATUS_DONE)
|
|
|
|
c->active++;
|
2003-04-15 21:53:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
layout_document(c->data.html.layout->children, width);
|
2003-02-26 00:00:27 +03:00
|
|
|
c->width = c->data.html.layout->children->width;
|
|
|
|
c->height = c->data.html.layout->children->height;
|
2003-04-15 21:53:00 +04:00
|
|
|
|
|
|
|
if (c->active != 0)
|
2003-06-17 23:24:21 +04:00
|
|
|
c->status = CONTENT_STATUS_READY;
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void html_reformat(struct content *c, unsigned int width, unsigned int height)
|
|
|
|
{
|
|
|
|
layout_document(c->data.html.layout->children, width);
|
2003-02-26 00:00:27 +03:00
|
|
|
c->width = c->data.html.layout->children->width;
|
|
|
|
c->height = c->data.html.layout->children->height;
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void html_destroy(struct content *c)
|
|
|
|
{
|
2003-04-15 21:53:00 +04:00
|
|
|
unsigned int i;
|
2003-02-09 15:58:15 +03:00
|
|
|
LOG(("content %p", c));
|
|
|
|
|
2003-07-10 01:33:01 +04:00
|
|
|
for (i = 0; i != c->data.html.object_count; i++) {
|
|
|
|
LOG(("object %i %p", i, c->data.html.object[i].content));
|
|
|
|
if (c->data.html.object[i].content != 0)
|
|
|
|
content_remove_user(c->data.html.object[i].content,
|
2003-07-15 02:57:45 +04:00
|
|
|
html_object_callback, c, i);
|
2003-07-10 01:33:01 +04:00
|
|
|
free(c->data.html.object[i].url);
|
|
|
|
}
|
|
|
|
free(c->data.html.object);
|
|
|
|
|
2003-04-25 12:03:15 +04:00
|
|
|
LOG(("layout %p", c->data.html.layout));
|
2003-02-09 15:58:15 +03:00
|
|
|
if (c->data.html.layout != 0)
|
|
|
|
box_free(c->data.html.layout);
|
2003-04-25 12:03:15 +04:00
|
|
|
LOG(("fonts %p", c->data.html.fonts));
|
2003-02-09 15:58:15 +03:00
|
|
|
if (c->data.html.fonts != 0)
|
|
|
|
font_free_set(c->data.html.fonts);
|
2003-04-25 12:03:15 +04:00
|
|
|
LOG(("title %p", c->title));
|
2003-03-04 01:40:39 +03:00
|
|
|
if (c->title != 0)
|
|
|
|
xfree(c->title);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
2003-04-15 21:53:00 +04:00
|
|
|
|