[project @ 2005-04-05 02:36:33 by rjw]

Reduce re-allocation of memory when receiving files (drastically increases the speed of loading large files locally). Sprite files no longer require two copies of their data.

svn path=/import/netsurf/; revision=1598
This commit is contained in:
Richard Wilson 2005-04-05 02:36:33 +00:00
parent 57c30e59f2
commit 92743be24d
3 changed files with 38 additions and 45 deletions

View File

@ -195,7 +195,7 @@ static const struct handler_entry handler_map[] = {
0, nsmng_destroy, 0, nsmng_redraw, 0, 0, false}, 0, nsmng_destroy, 0, nsmng_redraw, 0, 0, false},
#endif #endif
#ifdef WITH_SPRITE #ifdef WITH_SPRITE
{sprite_create, sprite_process_data, sprite_convert, {sprite_create, 0, sprite_convert,
0, sprite_destroy, 0, sprite_redraw, 0, 0, false}, 0, sprite_destroy, 0, sprite_redraw, 0, 0, false},
#endif #endif
#ifdef WITH_DRAW #ifdef WITH_DRAW
@ -290,6 +290,7 @@ struct content * content_create(const char *url)
c->fetch = 0; c->fetch = 0;
c->source_data = 0; c->source_data = 0;
c->source_size = 0; c->source_size = 0;
c->source_allocated = 0;
c->total_size = 0; c->total_size = 0;
c->no_error_pages = false; c->no_error_pages = false;
c->download = false; c->download = false;
@ -475,29 +476,36 @@ bool content_process_data(struct content *c, const char *data,
{ {
char *source_data; char *source_data;
union content_msg_data msg_data; union content_msg_data msg_data;
unsigned int extra_space;
assert(c); assert(c);
assert(c->type < HANDLER_MAP_COUNT); assert(c->type < HANDLER_MAP_COUNT);
assert(c->status == CONTENT_STATUS_LOADING); assert(c->status == CONTENT_STATUS_LOADING);
LOG(("content %s, size %u", c->url, size)); LOG(("content %s, size %u", c->url, size));
source_data = talloc_realloc(c, c->source_data, char, if ((c->source_size + size) > c->source_allocated) {
c->source_size + size); extra_space = (c->source_size + size) / 4;
if (!source_data) { if (extra_space < 65536)
c->status = CONTENT_STATUS_ERROR; extra_space = 65536;
msg_data.error = messages_get("NoMemory"); source_data = talloc_realloc(c, c->source_data, char,
content_broadcast(c, CONTENT_MSG_ERROR, msg_data); c->source_size + size + extra_space);
warn_user("NoMemory", 0); if (!source_data) {
return false; c->status = CONTENT_STATUS_ERROR;
msg_data.error = messages_get("NoMemory");
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
warn_user("NoMemory", 0);
return false;
}
c->source_data = source_data;
c->source_allocated = c->source_size + size + extra_space;
} }
c->source_data = source_data;
memcpy(c->source_data + c->source_size, data, size); memcpy(c->source_data + c->source_size, data, size);
c->source_size += size; c->source_size += size;
c->size += size; c->size += size;
if (handler_map[c->type].process_data) { if (handler_map[c->type].process_data) {
if (!handler_map[c->type].process_data(c, if (!handler_map[c->type].process_data(c,
source_data + c->source_size - size, size)) { c->source_data + c->source_size - size, size)) {
c->status = CONTENT_STATUS_ERROR; c->status = CONTENT_STATUS_ERROR;
return false; return false;
} }
@ -523,12 +531,22 @@ bool content_process_data(struct content *c, const char *data,
void content_convert(struct content *c, int width, int height) void content_convert(struct content *c, int width, int height)
{ {
union content_msg_data msg_data; union content_msg_data msg_data;
char *source_data;
assert(c); assert(c);
assert(c->type < HANDLER_MAP_COUNT); assert(c->type < HANDLER_MAP_COUNT);
assert(c->status == CONTENT_STATUS_LOADING); assert(c->status == CONTENT_STATUS_LOADING);
LOG(("content %s", c->url)); LOG(("content %s", c->url));
if (c->source_allocated != c->source_size) {
source_data = talloc_realloc(c, c->source_data, char,
c->source_size);
if (source_data) {
c->source_data = source_data;
c->source_allocated = c->source_size;
}
}
c->available_width = width; c->available_width = width;
if (handler_map[c->type].convert) { if (handler_map[c->type].convert) {
if (!handler_map[c->type].convert(c, width, height)) { if (!handler_map[c->type].convert(c, width, height)) {

View File

@ -239,6 +239,7 @@ struct content {
struct fetch *fetch; /**< Associated fetch, or 0. */ struct fetch *fetch; /**< Associated fetch, or 0. */
char *source_data; /**< Source data, as received. */ char *source_data; /**< Source data, as received. */
unsigned long source_size; /**< Amount of data fetched so far. */ unsigned long source_size; /**< Amount of data fetched so far. */
unsigned long source_allocated; /**< Amount of space allocated so far. */
unsigned long total_size; /**< Total data size, 0 if unknown. */ unsigned long total_size; /**< Total data size, 0 if unknown. */
bool no_error_pages; /**< Used by fetchcache(). */ bool no_error_pages; /**< Used by fetchcache(). */

View File

@ -52,34 +52,6 @@ bool sprite_create(struct content *c, const char *params[])
} }
/**
* Process data for a CONTENT_SPRITE.
*
* The data is just copied into the sprite area.
*/
bool sprite_process_data(struct content *c, char *data, unsigned int size)
{
char *sprite_data;
union content_msg_data msg_data;
sprite_data = realloc(c->data.sprite.data,
c->data.sprite.length + size);
if (!sprite_data) {
msg_data.error = messages_get("NoMemory");
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
warn_user("NoMemory", 0);
return false;
}
c->data.sprite.data = sprite_data;
memcpy((char*)(c->data.sprite.data) + c->data.sprite.length,
data, size);
c->data.sprite.length += size;
c->size += size;
return true;
}
/** /**
* Convert a CONTENT_SPRITE for display. * Convert a CONTENT_SPRITE for display.
* *
@ -91,13 +63,14 @@ bool sprite_convert(struct content *c, int width, int height)
os_error *error; os_error *error;
int w, h; int w, h;
union content_msg_data msg_data; union content_msg_data msg_data;
osspriteop_area *area = (osspriteop_area*)c->data.sprite.data; char *source_data;
/* fill in the size (first word) of the area */ source_data = ((char *)c->source_data) - 4;
area->size = c->data.sprite.length; osspriteop_area *area = (osspriteop_area*)source_data;
c->data.sprite.data = area;
error = xosspriteop_read_sprite_info(osspriteop_PTR, error = xosspriteop_read_sprite_info(osspriteop_PTR,
area, (osspriteop_area *)0x100,
(osspriteop_id) ((char *) area + area->first), (osspriteop_id) ((char *) area + area->first),
&w, &h, NULL, NULL); &w, &h, NULL, NULL);
if (error) { if (error) {
@ -125,7 +98,8 @@ bool sprite_convert(struct content *c, int width, int height)
void sprite_destroy(struct content *c) void sprite_destroy(struct content *c)
{ {
free(c->data.sprite.data); /* do not free c->data.sprite.data at it is simply a pointer to
* 4 bytes before the c->data.source_data. */
free(c->title); free(c->title);
} }