2003-06-25 03:22:00 +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
|
|
|
*/
|
|
|
|
|
2003-09-08 01:08:13 +04:00
|
|
|
/** \file
|
|
|
|
* Content handling (implementation).
|
2003-09-11 02:27:15 +04:00
|
|
|
*
|
2003-09-08 01:08:13 +04:00
|
|
|
* This implementation is based on the ::handler_map array, which maps
|
|
|
|
* ::content_type to the functions which implement that type.
|
|
|
|
*/
|
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2004-01-05 05:10:59 +03:00
|
|
|
#include "netsurf/utils/config.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/content/content.h"
|
2003-06-17 23:24:21 +04:00
|
|
|
#include "netsurf/content/other.h"
|
2003-04-04 19:19:32 +04:00
|
|
|
#include "netsurf/css/css.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/render/html.h"
|
|
|
|
#include "netsurf/render/textplain.h"
|
2003-07-15 02:57:45 +04:00
|
|
|
#ifdef riscos
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_JPEG
|
2003-02-26 00:00:27 +03:00
|
|
|
#include "netsurf/riscos/jpeg.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_PNG
|
2003-05-10 15:15:49 +04:00
|
|
|
#include "netsurf/riscos/png.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_GIF
|
2003-06-05 17:17:55 +04:00
|
|
|
#include "netsurf/riscos/gif.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_SPRITE
|
2003-09-11 02:27:15 +04:00
|
|
|
#include "netsurf/riscos/sprite.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_DRAW
|
2003-09-11 02:27:15 +04:00
|
|
|
#include "netsurf/riscos/draw.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_PLUGIN
|
2003-07-08 02:10:51 +04:00
|
|
|
#include "netsurf/riscos/plugin.h"
|
2003-07-15 02:57:45 +04:00
|
|
|
#endif
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-06-17 23:24:21 +04:00
|
|
|
#include "netsurf/utils/log.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
|
|
|
|
2003-09-08 01:08:13 +04:00
|
|
|
/** An entry in mime_map. */
|
2003-02-09 15:58:15 +03:00
|
|
|
struct mime_entry {
|
2003-07-08 02:10:51 +04:00
|
|
|
char mime_type[40];
|
2003-02-09 15:58:15 +03:00
|
|
|
content_type type;
|
|
|
|
};
|
2003-09-08 01:08:13 +04:00
|
|
|
/** A map from MIME type to ::content_type. Must be sorted by mime_type. */
|
2003-02-09 15:58:15 +03:00
|
|
|
static const struct mime_entry mime_map[] = {
|
2003-06-17 23:24:21 +04:00
|
|
|
#ifdef riscos
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_DRAW
|
2003-09-11 02:27:15 +04:00
|
|
|
{"application/drawfile", CONTENT_DRAW},
|
|
|
|
{"application/x-drawfile", CONTENT_DRAW},
|
|
|
|
{"image/drawfile", CONTENT_DRAW},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_GIF
|
2003-06-05 17:17:55 +04:00
|
|
|
{"image/gif", CONTENT_GIF},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_JPEG
|
2003-02-26 00:00:27 +03:00
|
|
|
{"image/jpeg", CONTENT_JPEG},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_PNG
|
2003-05-10 15:15:49 +04:00
|
|
|
{"image/png", CONTENT_PNG},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_DRAW
|
2003-09-11 02:27:15 +04:00
|
|
|
{"image/x-drawfile", CONTENT_DRAW},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_SPRITE
|
2003-09-11 02:27:15 +04:00
|
|
|
{"image/x-riscos-sprite", CONTENT_SPRITE},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-06-17 23:24:21 +04:00
|
|
|
#endif
|
2003-04-04 19:19:32 +04:00
|
|
|
{"text/css", CONTENT_CSS},
|
2003-02-09 15:58:15 +03:00
|
|
|
{"text/html", CONTENT_HTML},
|
|
|
|
{"text/plain", CONTENT_TEXTPLAIN},
|
|
|
|
};
|
|
|
|
#define MIME_MAP_COUNT (sizeof(mime_map) / sizeof(mime_map[0]))
|
|
|
|
|
2003-09-08 01:08:13 +04:00
|
|
|
/** An entry in handler_map. */
|
2003-02-09 15:58:15 +03:00
|
|
|
struct handler_entry {
|
2003-12-27 23:15:23 +03:00
|
|
|
void (*create)(struct content *c, const char *params[]);
|
2003-02-09 15:58:15 +03:00
|
|
|
void (*process_data)(struct content *c, char *data, unsigned long size);
|
|
|
|
int (*convert)(struct content *c, unsigned int width, unsigned int height);
|
|
|
|
void (*revive)(struct content *c, unsigned int width, unsigned int height);
|
|
|
|
void (*reformat)(struct content *c, unsigned int width, unsigned int height);
|
|
|
|
void (*destroy)(struct content *c);
|
2003-05-10 15:15:49 +04:00
|
|
|
void (*redraw)(struct content *c, long x, long y,
|
2003-09-10 21:10:25 +04:00
|
|
|
unsigned long width, unsigned long height,
|
|
|
|
long clip_x0, long clip_y0, long clip_x1, long clip_y1);
|
2003-07-15 02:57:45 +04:00
|
|
|
void (*add_instance)(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state);
|
|
|
|
void (*remove_instance)(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state);
|
|
|
|
void (*reshape_instance)(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state);
|
2003-02-09 15:58:15 +03:00
|
|
|
};
|
2003-09-08 01:08:13 +04:00
|
|
|
/** A table of handler functions, indexed by ::content_type.
|
|
|
|
* Must be ordered as enum ::content_type. */
|
2003-02-09 15:58:15 +03:00
|
|
|
static const struct handler_entry handler_map[] = {
|
2003-05-10 15:15:49 +04:00
|
|
|
{html_create, html_process_data, html_convert, html_revive,
|
2003-07-15 18:37:34 +04:00
|
|
|
html_reformat, html_destroy, html_redraw,
|
2003-09-04 01:58:54 +04:00
|
|
|
html_add_instance, html_remove_instance, html_reshape_instance},
|
2003-02-09 15:58:15 +03:00
|
|
|
{textplain_create, textplain_process_data, textplain_convert,
|
2003-07-15 02:57:45 +04:00
|
|
|
textplain_revive, textplain_reformat, textplain_destroy, 0, 0, 0, 0},
|
2004-01-24 20:08:16 +03:00
|
|
|
{css_create, css_process_data, css_convert, css_revive,
|
|
|
|
css_reformat, css_destroy, 0, 0, 0, 0},
|
2003-06-17 23:24:21 +04:00
|
|
|
#ifdef riscos
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_JPEG
|
2004-01-25 23:13:51 +03:00
|
|
|
{nsjpeg_create, nsjpeg_process_data, nsjpeg_convert, nsjpeg_revive,
|
|
|
|
nsjpeg_reformat, nsjpeg_destroy, nsjpeg_redraw, 0, 0, 0},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_PNG
|
2003-05-10 15:15:49 +04:00
|
|
|
{nspng_create, nspng_process_data, nspng_convert, nspng_revive,
|
2003-07-15 02:57:45 +04:00
|
|
|
nspng_reformat, nspng_destroy, nspng_redraw, 0, 0, 0},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_GIF
|
2003-06-05 17:17:55 +04:00
|
|
|
{nsgif_create, nsgif_process_data, nsgif_convert, nsgif_revive,
|
2003-07-15 02:57:45 +04:00
|
|
|
nsgif_reformat, nsgif_destroy, nsgif_redraw, 0, 0, 0},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_SPRITE
|
2003-09-11 02:27:15 +04:00
|
|
|
{sprite_create, sprite_process_data, sprite_convert, sprite_revive,
|
|
|
|
sprite_reformat, sprite_destroy, sprite_redraw, 0, 0, 0},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_DRAW
|
2003-09-11 02:27:15 +04:00
|
|
|
{draw_create, draw_process_data, draw_convert, draw_revive,
|
|
|
|
draw_reformat, draw_destroy, draw_redraw, 0, 0, 0},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_PLUGIN
|
2003-07-08 02:10:51 +04:00
|
|
|
{plugin_create, plugin_process_data, plugin_convert, plugin_revive,
|
2003-07-10 01:33:01 +04:00
|
|
|
plugin_reformat, plugin_destroy, plugin_redraw,
|
2003-07-15 02:57:45 +04:00
|
|
|
plugin_add_instance, plugin_remove_instance,
|
|
|
|
plugin_reshape_instance},
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-06-17 23:24:21 +04:00
|
|
|
#endif
|
|
|
|
{other_create, other_process_data, other_convert, other_revive,
|
2003-07-15 02:57:45 +04:00
|
|
|
other_reformat, other_destroy, 0, 0, 0, 0}
|
2003-02-09 15:58:15 +03:00
|
|
|
};
|
2003-06-17 23:24:21 +04:00
|
|
|
#define HANDLER_MAP_COUNT (sizeof(handler_map) / sizeof(handler_map[0]))
|
2003-02-09 15:58:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Convert a MIME type to a content_type.
|
|
|
|
*
|
|
|
|
* The returned ::content_type will always be suitable for content_set_type().
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
content_type content_lookup(const char *mime_type)
|
|
|
|
{
|
|
|
|
struct mime_entry *m;
|
|
|
|
m = bsearch(mime_type, mime_map, MIME_MAP_COUNT, sizeof(mime_map[0]),
|
|
|
|
(int (*)(const void *, const void *)) strcmp);
|
2003-07-10 01:33:01 +04:00
|
|
|
if (m == 0) {
|
2003-07-15 02:57:45 +04:00
|
|
|
#ifdef riscos
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_PLUGIN
|
2003-07-10 01:33:01 +04:00
|
|
|
if (plugin_handleable(mime_type))
|
|
|
|
return CONTENT_PLUGIN;
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|
2003-07-15 02:57:45 +04:00
|
|
|
#endif
|
2003-02-09 15:58:15 +03:00
|
|
|
return CONTENT_OTHER;
|
2003-07-10 01:33:01 +04:00
|
|
|
}
|
2003-02-09 15:58:15 +03:00
|
|
|
return m->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Create a new content structure.
|
|
|
|
*
|
|
|
|
* The type is initialised to CONTENT_UNKNOWN, and the status to
|
|
|
|
* CONTENT_STATUS_TYPE_UNKNOWN.
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
struct content * content_create(char *url)
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
|
|
|
struct content *c;
|
2003-06-17 23:24:21 +04:00
|
|
|
struct content_user *user_sentinel;
|
|
|
|
LOG(("url %s", url));
|
2003-02-09 15:58:15 +03:00
|
|
|
c = xcalloc(1, sizeof(struct content));
|
|
|
|
c->url = xstrdup(url);
|
2003-06-17 23:24:21 +04:00
|
|
|
c->type = CONTENT_UNKNOWN;
|
|
|
|
c->status = CONTENT_STATUS_TYPE_UNKNOWN;
|
2003-07-16 21:38:46 +04:00
|
|
|
c->cache = 0;
|
2003-02-09 15:58:15 +03:00
|
|
|
c->size = sizeof(struct content);
|
2003-06-17 23:24:21 +04:00
|
|
|
c->fetch = 0;
|
2003-09-08 01:08:13 +04:00
|
|
|
c->mime_type = 0;
|
2003-04-15 21:53:00 +04:00
|
|
|
strcpy(c->status_message, "Loading");
|
2003-06-17 23:24:21 +04:00
|
|
|
user_sentinel = xcalloc(1, sizeof(*user_sentinel));
|
|
|
|
user_sentinel->callback = 0;
|
|
|
|
user_sentinel->p1 = user_sentinel->p2 = 0;
|
|
|
|
user_sentinel->next = 0;
|
|
|
|
c->user_list = user_sentinel;
|
2003-02-09 15:58:15 +03:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Initialise the content for the specified type.
|
|
|
|
*
|
|
|
|
* The type is updated to the given type, and a copy of mime_type is taken. The
|
|
|
|
* status is changed to CONTENT_STATUS_LOADING. CONTENT_MSG_LOADING is sent to
|
|
|
|
* all users. The create function for the type is called to initialise the type
|
|
|
|
* specific parts of the content structure.
|
2003-12-27 23:15:23 +03:00
|
|
|
*
|
|
|
|
* \param c content structure
|
|
|
|
* \param type content_type to initialise to
|
|
|
|
* \param mime_type MIME-type string for this content
|
|
|
|
* \param params array of strings, ordered attribute, value, attribute, ..., 0
|
2003-06-17 23:24:21 +04:00
|
|
|
*/
|
|
|
|
|
2003-12-27 23:15:23 +03:00
|
|
|
void content_set_type(struct content *c, content_type type, char* mime_type,
|
|
|
|
const char *params[])
|
2003-06-17 23:24:21 +04:00
|
|
|
{
|
2003-07-15 02:57:45 +04:00
|
|
|
assert(c != 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
assert(c->status == CONTENT_STATUS_TYPE_UNKNOWN);
|
|
|
|
assert(type < CONTENT_UNKNOWN);
|
|
|
|
LOG(("content %s, type %i", c->url, type));
|
|
|
|
c->type = type;
|
2003-08-28 23:20:40 +04:00
|
|
|
c->mime_type = xstrdup(mime_type);
|
2003-06-17 23:24:21 +04:00
|
|
|
c->status = CONTENT_STATUS_LOADING;
|
2003-12-27 23:15:23 +03:00
|
|
|
handler_map[type].create(c, params);
|
2003-09-17 16:56:43 +04:00
|
|
|
content_broadcast(c, CONTENT_MSG_LOADING, 0);
|
|
|
|
/* c may be destroyed at this point as a result of
|
|
|
|
* CONTENT_MSG_LOADING, so must not be accessed */
|
2003-06-17 23:24:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Process a block of source data.
|
|
|
|
*
|
|
|
|
* Calls the process_data function for the content.
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_process_data(struct content *c, char *data, unsigned long size)
|
|
|
|
{
|
|
|
|
assert(c != 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
assert(c->status == CONTENT_STATUS_LOADING);
|
|
|
|
LOG(("content %s, size %lu", c->url, size));
|
2003-02-09 15:58:15 +03:00
|
|
|
handler_map[c->type].process_data(c, data, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* All data has arrived, convert for display.
|
|
|
|
*
|
|
|
|
* Calls the convert function for the content.
|
|
|
|
*
|
|
|
|
* - If the conversion succeeds, but there is still some processing required
|
|
|
|
* (eg. loading images), the content gets status CONTENT_STATUS_READY, and a
|
|
|
|
* CONTENT_MSG_READY is sent to all users.
|
|
|
|
* - If the conversion succeeds and is complete, the content gets status
|
|
|
|
* CONTENT_STATUS_DONE, and CONTENT_MSG_DONE is sent.
|
|
|
|
* - If the conversion fails, CONTENT_MSG_ERROR is sent. The content is then
|
|
|
|
* destroyed and must no longer be used.
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
void content_convert(struct content *c, unsigned long width, unsigned long height)
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
|
|
|
assert(c != 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
assert(c->type < HANDLER_MAP_COUNT);
|
|
|
|
assert(c->status == CONTENT_STATUS_LOADING);
|
|
|
|
LOG(("content %s", c->url));
|
2003-04-15 21:53:00 +04:00
|
|
|
c->available_width = width;
|
2003-06-17 23:24:21 +04:00
|
|
|
if (handler_map[c->type].convert(c, width, height)) {
|
|
|
|
/* convert failed, destroy content */
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, "Conversion failed");
|
2003-07-16 21:38:46 +04:00
|
|
|
if (c->cache)
|
|
|
|
cache_destroy(c);
|
2003-06-17 23:24:21 +04:00
|
|
|
content_destroy(c);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert(c->status == CONTENT_STATUS_READY ||
|
|
|
|
c->status == CONTENT_STATUS_DONE);
|
|
|
|
if (c->status == CONTENT_STATUS_READY)
|
|
|
|
content_broadcast(c, CONTENT_MSG_READY, 0);
|
|
|
|
else
|
|
|
|
content_broadcast(c, CONTENT_MSG_DONE, 0);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Fix content that has been loaded from the cache.
|
|
|
|
*
|
|
|
|
* Calls the revive function for the content. The content will be processed for
|
|
|
|
* display, for example dependencies loaded or reformated to current width.
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_revive(struct content *c, unsigned long width, unsigned long height)
|
|
|
|
{
|
|
|
|
assert(c != 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
if (c->status != CONTENT_STATUS_DONE)
|
2003-04-18 01:35:02 +04:00
|
|
|
return;
|
2003-04-15 21:53:00 +04:00
|
|
|
c->available_width = width;
|
2003-02-09 15:58:15 +03:00
|
|
|
handler_map[c->type].revive(c, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Reformat to new size.
|
|
|
|
*
|
|
|
|
* Calls the reformat function for the content.
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_reformat(struct content *c, unsigned long width, unsigned long height)
|
|
|
|
{
|
|
|
|
assert(c != 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
assert(c->status == CONTENT_STATUS_READY ||
|
|
|
|
c->status == CONTENT_STATUS_DONE);
|
2003-04-15 21:53:00 +04:00
|
|
|
c->available_width = width;
|
2003-02-09 15:58:15 +03:00
|
|
|
handler_map[c->type].reformat(c, width, height);
|
2003-09-11 01:44:11 +04:00
|
|
|
content_broadcast(c, CONTENT_MSG_REFORMAT, 0);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Destroy and free a content.
|
|
|
|
*
|
|
|
|
* Calls the destroy function for the content, and frees the structure.
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_destroy(struct content *c)
|
|
|
|
{
|
2003-06-17 23:24:21 +04:00
|
|
|
struct content_user *user, *next;
|
2003-02-09 15:58:15 +03:00
|
|
|
assert(c != 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
LOG(("content %p %s", c, c->url));
|
|
|
|
if (c->type < HANDLER_MAP_COUNT)
|
|
|
|
handler_map[c->type].destroy(c);
|
|
|
|
for (user = c->user_list; user != 0; user = next) {
|
|
|
|
next = user->next;
|
|
|
|
xfree(user);
|
|
|
|
}
|
2003-09-08 01:08:13 +04:00
|
|
|
free(c->mime_type);
|
2003-10-09 00:49:26 +04:00
|
|
|
xfree(c->url);
|
2003-02-09 15:58:15 +03:00
|
|
|
xfree(c);
|
|
|
|
}
|
|
|
|
|
2003-05-10 15:15:49 +04:00
|
|
|
|
2004-01-23 23:46:29 +03:00
|
|
|
/**
|
|
|
|
* Reset a content.
|
|
|
|
*
|
|
|
|
* Calls the destroy function for the content, but does not free
|
|
|
|
* the structure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void content_reset(struct content *c)
|
|
|
|
{
|
|
|
|
assert(c != 0);
|
|
|
|
LOG(("content %p %s", c, c->url));
|
|
|
|
if (c->type < HANDLER_MAP_COUNT)
|
|
|
|
handler_map[c->type].destroy(c);
|
|
|
|
c->type = CONTENT_UNKNOWN;
|
|
|
|
c->status = CONTENT_STATUS_TYPE_UNKNOWN;
|
|
|
|
c->size = sizeof(struct content);
|
|
|
|
free(c->mime_type);
|
|
|
|
c->mime_type = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-10 15:15:49 +04:00
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Display content on screen.
|
|
|
|
*
|
|
|
|
* Calls the redraw function for the content, if it exists.
|
2003-05-10 15:15:49 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_redraw(struct content *c, long x, long y,
|
2003-09-10 21:10:25 +04:00
|
|
|
unsigned long width, unsigned long height,
|
|
|
|
long clip_x0, long clip_y0, long clip_x1, long clip_y1)
|
2003-05-10 15:15:49 +04:00
|
|
|
{
|
|
|
|
assert(c != 0);
|
|
|
|
if (handler_map[c->type].redraw != 0)
|
2003-09-10 21:10:25 +04:00
|
|
|
handler_map[c->type].redraw(c, x, y, width, height,
|
2003-09-11 02:27:15 +04:00
|
|
|
clip_x0, clip_y0, clip_x1, clip_y1);
|
2003-05-10 15:15:49 +04:00
|
|
|
}
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Register a user for callbacks.
|
|
|
|
*
|
|
|
|
* The callback will be called with p1 and p2 when content_broadcast() is
|
|
|
|
* called with the content.
|
2003-06-17 23:24:21 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_add_user(struct content *c,
|
|
|
|
void (*callback)(content_msg msg, struct content *c, void *p1,
|
|
|
|
void *p2, const char *error),
|
2003-07-15 02:57:45 +04:00
|
|
|
void *p1, void *p2)
|
2003-06-17 23:24:21 +04:00
|
|
|
{
|
|
|
|
struct content_user *user;
|
|
|
|
LOG(("content %s, user %p %p %p", c->url, callback, p1, p2));
|
|
|
|
user = xcalloc(1, sizeof(*user));
|
|
|
|
user->callback = callback;
|
|
|
|
user->p1 = p1;
|
|
|
|
user->p2 = p2;
|
|
|
|
user->next = c->user_list->next;
|
|
|
|
c->user_list->next = user;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Remove a callback user.
|
|
|
|
*
|
|
|
|
* The callback function, p1, and p2 must be identical to those passed to
|
|
|
|
* content_add_user().
|
2003-06-17 23:24:21 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_remove_user(struct content *c,
|
|
|
|
void (*callback)(content_msg msg, struct content *c, void *p1,
|
|
|
|
void *p2, const char *error),
|
2003-07-15 02:57:45 +04:00
|
|
|
void *p1, void *p2)
|
2003-06-17 23:24:21 +04:00
|
|
|
{
|
|
|
|
struct content_user *user, *next;
|
|
|
|
LOG(("content %s, user %p %p %p", c->url, callback, p1, p2));
|
|
|
|
|
|
|
|
/* user_list starts with a sentinel */
|
|
|
|
for (user = c->user_list; user->next != 0 &&
|
|
|
|
!(user->next->callback == callback &&
|
|
|
|
user->next->p1 == p1 &&
|
|
|
|
user->next->p2 == p2); user = user->next)
|
|
|
|
;
|
|
|
|
if (user->next == 0) {
|
|
|
|
LOG(("user not found in list"));
|
|
|
|
assert(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
next = user->next;
|
|
|
|
user->next = next->next;
|
|
|
|
xfree(next);
|
|
|
|
|
|
|
|
/* if there are now no users, stop any loading in progress
|
|
|
|
* and destroy content structure if not in state READY or DONE */
|
|
|
|
if (c->user_list->next == 0) {
|
|
|
|
LOG(("no users for %p %s", c, c->url));
|
|
|
|
if (c->fetch != 0)
|
|
|
|
fetch_abort(c->fetch);
|
|
|
|
if (c->status < CONTENT_STATUS_READY) {
|
2003-07-16 21:38:46 +04:00
|
|
|
if (c->cache)
|
|
|
|
cache_destroy(c);
|
2003-06-17 23:24:21 +04:00
|
|
|
content_destroy(c);
|
2003-07-16 21:38:46 +04:00
|
|
|
} else {
|
|
|
|
if (c->cache)
|
|
|
|
cache_freeable(c);
|
|
|
|
}
|
2003-06-17 23:24:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2003-09-08 01:08:13 +04:00
|
|
|
* Send a message to all users.
|
2003-06-17 23:24:21 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
void content_broadcast(struct content *c, content_msg msg, char *error)
|
|
|
|
{
|
|
|
|
struct content_user *user, *next;
|
|
|
|
LOG(("content %s, message %i", c->url, msg));
|
|
|
|
for (user = c->user_list->next; user != 0; user = next) {
|
|
|
|
next = user->next; /* user may be destroyed during callback */
|
|
|
|
if (user->callback != 0)
|
|
|
|
user->callback(msg, c, user->p1, user->p2, error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-15 02:57:45 +04:00
|
|
|
|
2003-09-08 01:08:13 +04:00
|
|
|
/**
|
|
|
|
* Add an instance to a content.
|
|
|
|
*
|
|
|
|
* Calls the add_instance function for the content.
|
|
|
|
*/
|
|
|
|
|
2003-07-15 02:57:45 +04:00
|
|
|
void content_add_instance(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state)
|
|
|
|
{
|
|
|
|
assert(c != 0);
|
|
|
|
assert(c->type < CONTENT_UNKNOWN);
|
|
|
|
LOG(("content %s", c->url));
|
|
|
|
if (handler_map[c->type].add_instance != 0)
|
|
|
|
handler_map[c->type].add_instance(c, bw, page, box, params, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-08 01:08:13 +04:00
|
|
|
/**
|
|
|
|
* Remove an instance from a content.
|
|
|
|
*
|
|
|
|
* Calls the remove_instance function for the content.
|
|
|
|
*/
|
|
|
|
|
2003-07-15 02:57:45 +04:00
|
|
|
void content_remove_instance(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state)
|
|
|
|
{
|
|
|
|
assert(c != 0);
|
|
|
|
assert(c->type < CONTENT_UNKNOWN);
|
|
|
|
LOG(("content %s", c->url));
|
|
|
|
if (handler_map[c->type].remove_instance != 0)
|
|
|
|
handler_map[c->type].remove_instance(c, bw, page, box, params, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-08 01:08:13 +04:00
|
|
|
/**
|
|
|
|
* Reshape an instance of a content.
|
|
|
|
*
|
|
|
|
* Calls the reshape_instance function for the content.
|
|
|
|
*/
|
|
|
|
|
2003-07-15 02:57:45 +04:00
|
|
|
void content_reshape_instance(struct content *c, struct browser_window *bw,
|
|
|
|
struct content *page, struct box *box,
|
|
|
|
struct object_params *params, void **state)
|
|
|
|
{
|
|
|
|
assert(c != 0);
|
|
|
|
assert(c->type < CONTENT_UNKNOWN);
|
|
|
|
LOG(("content %s", c->url));
|
|
|
|
if (handler_map[c->type].reshape_instance != 0)
|
|
|
|
handler_map[c->type].reshape_instance(c, bw, page, box, params, state);
|
|
|
|
}
|
|
|
|
|