netsurf/content/handlers/image/gif.c

405 lines
9.3 KiB
C
Raw Normal View History

/*
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
* Copyright 2004 Richard Wilson <not_ginger_matt@users.sourceforge.net>
Merged revisions 4345-4346,4350-4351,4389,4391,4395,4401-4403,4423,4485-4486 via svnmerge from svn://semichrome.net/branches/dynis/netsurf ........ r4345 | dynis | 2008-06-15 18:37:23 -0500 (Sun, 15 Jun 2008) | 1 line Move NetSurf's gifread.h to libnsgif ........ r4346 | dynis | 2008-06-15 18:38:38 -0500 (Sun, 15 Jun 2008) | 1 line Remove NetSurf's gifread.c (replaced by libnsgif) ........ r4350 | dynis | 2008-06-15 18:57:17 -0500 (Sun, 15 Jun 2008) | 1 line Added references to libnsgif where necessary; corrected function calls where callbacks were implemented ........ r4351 | dynis | 2008-06-15 19:00:33 -0500 (Sun, 15 Jun 2008) | 1 line Updated Makefile to compile with libnsgif ........ r4389 | dynis | 2008-06-18 13:58:51 -0500 (Wed, 18 Jun 2008) | 1 line Altered bitmap callback table name for gif images to avoid ambiguity when bmp image library is created ........ r4391 | dynis | 2008-06-18 14:08:39 -0500 (Wed, 18 Jun 2008) | 1 line Updated netsurf branch to use new bitmap callback table structure name that was altered in libnsgif ........ r4395 | dynis | 2008-06-18 14:54:51 -0500 (Wed, 18 Jun 2008) | 1 line Corrected param comments for bitmap_set_suspendable() ........ r4401 | dynis | 2008-06-18 18:39:50 -0500 (Wed, 18 Jun 2008) | 1 line Added references to libnsbmp where necessary; corrected function calls where callbacks were implemented ........ r4402 | dynis | 2008-06-18 18:40:47 -0500 (Wed, 18 Jun 2008) | 1 line Updated Makefile to compile with libnsbmp ........ r4403 | dynis | 2008-06-18 18:41:53 -0500 (Wed, 18 Jun 2008) | 1 line Remove NetSurf's bmpread.c and bmpread.h (replaced by libnsbmp) ........ r4423 | dynis | 2008-06-22 14:21:30 -0500 (Sun, 22 Jun 2008) | 1 line Correct a silly mistake in nsbmp_bitmap_create ........ r4485 | dynis | 2008-07-01 04:13:48 -0500 (Tue, 01 Jul 2008) | 1 line Integrated the latest versions of libnsgif and libnsbmp into NetSurf ........ r4486 | dynis | 2008-07-01 05:27:10 -0500 (Tue, 01 Jul 2008) | 1 line Altered bitmap functions to receive void pointers for proper utilisation of libnsgif and libnsbmp ........ svn path=/trunk/netsurf/; revision=5071
2008-08-12 07:49:34 +04:00
* Copyright 2008 Sean Fox <dyntryx@gmail.com>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
* NetSurf is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* NetSurf 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file
*
* Content for image/gif implementation
*
* All GIFs are dynamically decompressed using the routines that gifread.c
* provides. Whilst this allows support for progressive decoding, it is
* not implemented here as NetSurf currently does not provide such support.
*
* [rjw] - Sun 4th April 2004
*/
#include <assert.h>
#include <string.h>
#include <stdbool.h>
#include <stdlib.h>
2022-02-24 20:45:07 +03:00
#include <nsgif.h>
#include "utils/utils.h"
#include "utils/messages.h"
#include "utils/nsoption.h"
2016-05-30 13:23:32 +03:00
#include "netsurf/misc.h"
#include "netsurf/bitmap.h"
#include "netsurf/content.h"
#include "content/llcache.h"
2020-05-07 22:55:44 +03:00
#include "content/content.h"
#include "content/content_protected.h"
2020-05-07 22:55:44 +03:00
#include "content/content_factory.h"
#include "desktop/gui_internal.h"
#include "image/image.h"
#include "image/gif.h"
2022-02-24 20:45:07 +03:00
typedef struct gif_content {
struct content base;
2022-02-24 20:45:07 +03:00
nsgif_t *gif; /**< GIF animation data */
uint32_t current_frame; /**< current frame to display [0...(max-1)] */
} gif_content;
static inline nserror gif__nsgif_error_to_ns(nsgif_error gif_res)
{
nserror err;
switch (gif_res) {
case NSGIF_OK:
err = NSERROR_OK;
break;
case NSGIF_ERR_OOM:
err = NSERROR_NOMEM;
break;
default:
err = NSERROR_GIF_ERROR;
break;
}
2022-02-24 20:45:07 +03:00
return err;
}
/**
* Callback for libnsgif; forwards the call to bitmap_create()
*
* \param width width of image in pixels
* \param height width of image in pixels
* \return an opaque struct bitmap, or NULL on memory exhaustion
*/
2022-02-24 20:45:07 +03:00
static void *gif_bitmap_create(int width, int height)
{
return guit->bitmap->create(width, height, BITMAP_NEW);
}
Merged revisions 4345-4346,4350-4351,4389,4391,4395,4401-4403,4423,4485-4486 via svnmerge from svn://semichrome.net/branches/dynis/netsurf ........ r4345 | dynis | 2008-06-15 18:37:23 -0500 (Sun, 15 Jun 2008) | 1 line Move NetSurf's gifread.h to libnsgif ........ r4346 | dynis | 2008-06-15 18:38:38 -0500 (Sun, 15 Jun 2008) | 1 line Remove NetSurf's gifread.c (replaced by libnsgif) ........ r4350 | dynis | 2008-06-15 18:57:17 -0500 (Sun, 15 Jun 2008) | 1 line Added references to libnsgif where necessary; corrected function calls where callbacks were implemented ........ r4351 | dynis | 2008-06-15 19:00:33 -0500 (Sun, 15 Jun 2008) | 1 line Updated Makefile to compile with libnsgif ........ r4389 | dynis | 2008-06-18 13:58:51 -0500 (Wed, 18 Jun 2008) | 1 line Altered bitmap callback table name for gif images to avoid ambiguity when bmp image library is created ........ r4391 | dynis | 2008-06-18 14:08:39 -0500 (Wed, 18 Jun 2008) | 1 line Updated netsurf branch to use new bitmap callback table structure name that was altered in libnsgif ........ r4395 | dynis | 2008-06-18 14:54:51 -0500 (Wed, 18 Jun 2008) | 1 line Corrected param comments for bitmap_set_suspendable() ........ r4401 | dynis | 2008-06-18 18:39:50 -0500 (Wed, 18 Jun 2008) | 1 line Added references to libnsbmp where necessary; corrected function calls where callbacks were implemented ........ r4402 | dynis | 2008-06-18 18:40:47 -0500 (Wed, 18 Jun 2008) | 1 line Updated Makefile to compile with libnsbmp ........ r4403 | dynis | 2008-06-18 18:41:53 -0500 (Wed, 18 Jun 2008) | 1 line Remove NetSurf's bmpread.c and bmpread.h (replaced by libnsbmp) ........ r4423 | dynis | 2008-06-22 14:21:30 -0500 (Sun, 22 Jun 2008) | 1 line Correct a silly mistake in nsbmp_bitmap_create ........ r4485 | dynis | 2008-07-01 04:13:48 -0500 (Tue, 01 Jul 2008) | 1 line Integrated the latest versions of libnsgif and libnsbmp into NetSurf ........ r4486 | dynis | 2008-07-01 05:27:10 -0500 (Tue, 01 Jul 2008) | 1 line Altered bitmap functions to receive void pointers for proper utilisation of libnsgif and libnsbmp ........ svn path=/trunk/netsurf/; revision=5071
2008-08-12 07:49:34 +04:00
2022-02-24 20:45:07 +03:00
static nserror gif_create_gif_data(gif_content *c)
{
2022-02-24 20:45:07 +03:00
nsgif_error gif_res;
const nsgif_bitmap_cb_vt gif_bitmap_callbacks = {
.create = gif_bitmap_create,
.destroy = guit->bitmap->destroy,
.get_buffer = guit->bitmap->get_buffer,
.set_opaque = guit->bitmap->set_opaque,
.test_opaque = guit->bitmap->test_opaque,
.modified = guit->bitmap->modified
};
2022-02-24 20:45:07 +03:00
gif_res = nsgif_create(&gif_bitmap_callbacks, &c->gif);
if (gif_res != NSGIF_OK) {
nserror err = gif__nsgif_error_to_ns(gif_res);
content_broadcast_error(&c->base, err, NULL);
return err;
}
2022-02-24 20:45:07 +03:00
return NSERROR_OK;
}
2022-02-24 20:45:07 +03:00
static nserror gif_create(const content_handler *handler,
lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c)
{
2022-02-24 20:45:07 +03:00
gif_content *result;
nserror error;
2022-02-24 20:45:07 +03:00
result = calloc(1, sizeof(gif_content));
if (result == NULL)
return NSERROR_NOMEM;
error = content__init(&result->base, handler, imime_type, params,
llcache, fallback_charset, quirks);
if (error != NSERROR_OK) {
free(result);
return error;
}
2022-02-24 20:45:07 +03:00
error = gif_create_gif_data(result);
if (error != NSERROR_OK) {
free(result);
return error;
}
*c = (struct content *) result;
return NSERROR_OK;
}
2022-02-24 20:45:07 +03:00
/**
* Scheduler callback. Performs any necessary animation.
*
* \param p The content to animate
*/
static void gif_animate_cb(void *p);
/**
* Performs any necessary animation.
*
* \param p The content to animate
*/
2022-02-24 20:45:07 +03:00
static nserror gif__animate(gif_content *gif, bool redraw)
{
2022-02-24 20:45:07 +03:00
nsgif_error gif_res;
nsgif_rect_t rect;
uint32_t delay;
uint32_t f;
gif_res = nsgif_frame_prepare(gif->gif, &rect, &delay, &f);
if (gif_res != NSGIF_OK) {
return gif__nsgif_error_to_ns(gif_res);
}
2022-02-24 20:45:07 +03:00
gif->current_frame = f;
/* Continue animating if we should */
2022-02-24 20:45:07 +03:00
if (nsoption_bool(animate_images) && delay != NSGIF_INFINITE) {
guit->misc->schedule(delay * 10, gif_animate_cb, gif);
}
2022-02-24 20:45:07 +03:00
if (redraw) {
union content_msg_data data;
2022-02-24 20:45:07 +03:00
/* area within gif to redraw */
data.redraw.x = rect.x0;
data.redraw.y = rect.y0;
data.redraw.width = rect.x1 - rect.x0;
data.redraw.height = rect.y1 - rect.y0;
content_broadcast(&gif->base, CONTENT_MSG_REDRAW, &data);
}
2022-02-24 20:45:07 +03:00
return NSERROR_OK;
}
static void gif_animate_cb(void *p)
{
gif_content *gif = p;
gif__animate(gif, true);
}
2022-02-24 20:45:07 +03:00
static bool gif_convert(struct content *c)
{
2022-02-24 20:45:07 +03:00
gif_content *gif = (gif_content *) c;
const nsgif_info_t *gif_info;
const uint8_t *data;
2022-02-24 20:45:07 +03:00
nsgif_error gif_err;
nserror err;
size_t size;
char *title;
/* Get the animation */
data = content__get_source_data(c, &size);
/* Initialise the GIF */
2022-02-24 20:45:07 +03:00
gif_err = nsgif_data_scan(gif->gif, size, data);
if (gif_err != NSGIF_OK) {
err = gif__nsgif_error_to_ns(gif_err);
content_broadcast_error(c, err, nsgif_strerror(gif_err));
return false;
}
gif_info = nsgif_get_info(gif->gif);
assert(gif_info != NULL);
/* Abort on bad GIFs */
2022-02-24 20:45:07 +03:00
if (gif_info->height == 0) {
err = gif__nsgif_error_to_ns(gif_err);
content_broadcast_error(c, err, "Zero height image.");
return false;
}
/* Store our content width, height and calculate size */
2022-02-24 20:45:07 +03:00
c->width = gif_info->width;
c->height = gif_info->height;
c->size += (gif_info->width * gif_info->height * 4) + 16 + 44;
/* set title text */
title = messages_get_buff("GIFTitle",
2012-10-24 21:22:45 +04:00
nsurl_access_leaf(llcache_handle_get_url(c->llcache)),
c->width, c->height);
if (title != NULL) {
content__set_title(c, title);
free(title);
}
2022-02-24 20:45:07 +03:00
err = gif__animate(gif, false);
if (err != NSERROR_OK) {
content_broadcast_error(c, NSERROR_GIF_ERROR, NULL);
return false;
}
/* Exit as a success */
content_set_ready(c);
content_set_done(c);
/* Done: update status bar */
content_set_status(c, "");
return true;
}
/**
* Updates the GIF bitmap to display the current frame
*
* \param gif The gif context to update.
2022-02-24 20:45:07 +03:00
* \return NSGIF_OK on success else apropriate error code.
*/
2022-02-24 20:45:07 +03:00
static nsgif_error gif_get_frame(gif_content *gif,
nsgif_bitmap_t **bitmap)
{
2022-02-24 20:45:07 +03:00
uint32_t current_frame = gif->current_frame;
if (!nsoption_bool(animate_images)) {
current_frame = 0;
}
2022-02-24 20:45:07 +03:00
return nsgif_frame_decode(gif->gif, current_frame, bitmap);
}
2022-02-24 20:45:07 +03:00
static bool gif_redraw(struct content *c, struct content_redraw_data *data,
const struct rect *clip, const struct redraw_context *ctx)
{
2022-02-24 20:45:07 +03:00
gif_content *gif = (gif_content *) c;
nsgif_bitmap_t *bitmap;
2022-02-24 20:45:07 +03:00
if (gif_get_frame(gif, &bitmap) != NSGIF_OK) {
return false;
}
2022-02-24 20:45:07 +03:00
return image_bitmap_plot(bitmap, data, clip, ctx);
}
2022-02-24 20:45:07 +03:00
static void gif_destroy(struct content *c)
{
2022-02-24 20:45:07 +03:00
gif_content *gif = (gif_content *) c;
/* Free all the associated memory buffers */
2022-02-24 20:45:07 +03:00
guit->misc->schedule(-1, gif_animate_cb, c);
nsgif_destroy(gif->gif);
}
2022-02-24 20:45:07 +03:00
static nserror gif_clone(const struct content *old, struct content **newc)
{
2022-02-24 20:45:07 +03:00
gif_content *gif;
nserror error;
2022-02-24 20:45:07 +03:00
gif = calloc(1, sizeof(gif_content));
if (gif == NULL)
return NSERROR_NOMEM;
error = content__clone(old, &gif->base);
if (error != NSERROR_OK) {
content_destroy(&gif->base);
return error;
}
/* Simply replay creation and conversion of content */
2022-02-24 20:45:07 +03:00
error = gif_create_gif_data(gif);
if (error != NSERROR_OK) {
content_destroy(&gif->base);
return error;
}
if (old->status == CONTENT_STATUS_READY ||
old->status == CONTENT_STATUS_DONE) {
2022-02-24 20:45:07 +03:00
if (gif_convert(&gif->base) == false) {
content_destroy(&gif->base);
return NSERROR_CLONE_FAILED;
}
}
*newc = (struct content *) gif;
return NSERROR_OK;
}
2022-02-24 20:45:07 +03:00
static void gif_add_user(struct content *c)
{
2022-02-24 20:45:07 +03:00
gif_content *gif = (gif_content *) c;
/* Ensure this content has already been converted.
* If it hasn't, the animation will start at the conversion phase instead. */
if (gif->gif == NULL) return;
if (content_count_users(c) == 1) {
/* First user, and content already converted, so start the animation. */
2022-02-24 20:45:07 +03:00
if (nsgif_reset(gif->gif) == NSGIF_OK) {
gif__animate(gif, true);
}
}
}
2022-02-24 20:45:07 +03:00
static void gif_remove_user(struct content *c)
{
if (content_count_users(c) == 1) {
/* Last user is about to be removed from this content, so stop the animation. */
2022-02-24 20:45:07 +03:00
guit->misc->schedule(-1, gif_animate_cb, c);
}
}
2022-02-24 20:45:07 +03:00
static nsgif_bitmap_t *gif_get_bitmap(
const struct content *c, void *context)
{
2022-02-24 20:45:07 +03:00
gif_content *gif = (gif_content *) c;
nsgif_bitmap_t *bitmap;
2022-02-24 20:45:07 +03:00
if (gif_get_frame(gif, &bitmap) != NSGIF_OK) {
return NULL;
}
2022-02-24 20:45:07 +03:00
return bitmap;
}
2022-02-24 20:45:07 +03:00
static content_type gif_content_type(void)
{
return CONTENT_IMAGE;
}
2022-02-24 20:45:07 +03:00
static bool gif_content_is_opaque(struct content *c)
{
2022-02-24 20:45:07 +03:00
gif_content *gif = (gif_content *) c;
nsgif_bitmap_t *bitmap;
2022-02-24 20:45:07 +03:00
if (gif_get_frame(gif, &bitmap) != NSGIF_OK) {
return false;
}
2022-02-24 20:45:07 +03:00
return guit->bitmap->get_opaque(bitmap);
}
2022-02-24 20:45:07 +03:00
static const content_handler gif_content_handler = {
.create = gif_create,
.data_complete = gif_convert,
.destroy = gif_destroy,
.redraw = gif_redraw,
.clone = gif_clone,
.add_user = gif_add_user,
.remove_user = gif_remove_user,
.get_internal = gif_get_bitmap,
.type = gif_content_type,
.is_opaque = gif_content_is_opaque,
.no_share = false,
};
2022-02-24 20:45:07 +03:00
static const char *gif_types[] = {
"image/gif"
};
2022-02-24 20:45:07 +03:00
CONTENT_FACTORY_REGISTER_TYPES(nsgif, gif_types, gif_content_handler);