This repository has been archived on 2023-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
libpng/pngerror.c

113 lines
3.8 KiB
C
Raw Normal View History

1995-12-19 09:22:19 +00:00
/* pngerror.c - stub functions for i/o and memory allocation
1997-05-16 07:46:07 +00:00
libpng 1.0 beta 6 - version 0.96
1995-12-19 09:22:19 +00:00
For conditions of distribution and use, see copyright notice in png.h
1996-01-26 07:38:47 +00:00
Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
1997-05-16 07:46:07 +00:00
Copyright (c) 1996, 1997 Andreas Dilger
May 12, 1997
1995-12-19 09:22:19 +00:00
1996-01-26 07:38:47 +00:00
This file provides a location for all error handling. Users which
1996-01-10 08:56:49 +00:00
need special error handling are expected to write replacement functions
1996-06-05 20:50:50 +00:00
and use png_set_error_fn() to use those functions. See the instructions
1996-01-26 07:38:47 +00:00
at each function. */
1995-12-19 09:22:19 +00:00
#define PNG_INTERNAL
#include "png.h"
1996-06-05 20:50:50 +00:00
static void png_default_error PNGARG((png_structp png_ptr,
png_const_charp message));
static void png_default_warning PNGARG((png_structp png_ptr,
png_const_charp message));
1996-01-10 08:56:49 +00:00
/* This function is called whenever there is a fatal error. This function
1996-01-26 07:38:47 +00:00
should not be changed. If there is a need to handle errors differently,
1996-06-05 20:50:50 +00:00
you should supply a replacement error function and use png_set_error_fn()
1996-01-10 08:56:49 +00:00
to replace the error function at run-time. */
1995-12-19 09:22:19 +00:00
void
png_error(png_structp png_ptr, png_const_charp message)
{
1997-05-16 07:46:07 +00:00
if (png_ptr->error_fn != NULL)
1996-01-26 07:38:47 +00:00
(*(png_ptr->error_fn))(png_ptr, message);
1995-12-19 09:22:19 +00:00
1996-01-26 07:38:47 +00:00
/* if the following returns or doesn't exist, use the default function,
which will not return */
png_default_error(png_ptr, message);
1995-12-19 09:22:19 +00:00
}
1996-01-10 08:56:49 +00:00
/* This function is called whenever there is a non-fatal error. This function
1996-01-26 07:38:47 +00:00
should not be changed. If there is a need to handle warnings differently,
you should supply a replacement warning function and use
1996-06-05 20:50:50 +00:00
png_set_error_fn() to replace the warning function at run-time. */
1995-12-19 09:22:19 +00:00
void
png_warning(png_structp png_ptr, png_const_charp message)
{
1997-05-16 07:46:07 +00:00
if (png_ptr->warning_fn != NULL)
1996-01-26 07:38:47 +00:00
(*(png_ptr->warning_fn))(png_ptr, message);
else
png_default_warning(png_ptr, message);
1995-12-19 09:22:19 +00:00
}
1996-01-16 07:51:56 +00:00
/* This is the default error handling function. Note that replacements for
1996-01-26 07:38:47 +00:00
this function MUST NOT RETURN, or the program will likely crash. This
function is used by default, or if the program supplies NULL for the
1996-06-05 20:50:50 +00:00
error function pointer in png_set_error_fn(). */
static void
1995-12-19 09:22:19 +00:00
png_default_error(png_structp png_ptr, png_const_charp message)
{
#ifndef PNG_NO_STDIO
1996-01-26 07:38:47 +00:00
fprintf(stderr, "libpng error: %s\n", message);
1995-12-19 09:22:19 +00:00
#endif
#ifdef USE_FAR_KEYWORD
1996-01-26 07:38:47 +00:00
{
jmp_buf jmpbuf;
png_memcpy(jmpbuf,png_ptr->jmpbuf,sizeof(jmp_buf));
longjmp(jmpbuf, 1);
}
1995-12-19 09:22:19 +00:00
#else
1996-01-26 07:38:47 +00:00
longjmp(png_ptr->jmpbuf, 1);
1995-12-19 09:22:19 +00:00
#endif
}
1996-01-10 08:56:49 +00:00
/* This function is called when there is a warning, but the library thinks
1996-01-26 07:38:47 +00:00
it can continue anyway. Replacement functions don't have to do anything
here if you don't want to. In the default configuration, png_ptr is
1995-12-19 09:22:19 +00:00
not used, but it is passed in case it may be useful. */
1996-06-05 20:50:50 +00:00
static void
1995-12-19 09:22:19 +00:00
png_default_warning(png_structp png_ptr, png_const_charp message)
{
1997-05-16 07:46:07 +00:00
if (png_ptr == NULL)
1996-01-26 07:38:47 +00:00
return;
1995-12-19 09:22:19 +00:00
#ifndef PNG_NO_STDIO
1996-01-26 07:38:47 +00:00
fprintf(stderr, "libpng warning: %s\n", message);
1995-12-19 09:22:19 +00:00
#endif
}
1996-01-10 08:56:49 +00:00
/* This function is called when the application wants to use another method
1996-01-26 07:38:47 +00:00
of handling errors and warnings. Note that the error function MUST NOT
1996-06-05 20:50:50 +00:00
return to the calling routine or serious problems will occur. The return
method used in the default routine calls longjmp(png_ptr->jmpbuf, 1) */
1995-12-19 09:22:19 +00:00
void
1996-06-05 20:50:50 +00:00
png_set_error_fn(png_structp png_ptr, png_voidp error_ptr,
png_error_ptr error_fn, png_error_ptr warning_fn)
1995-12-19 09:22:19 +00:00
{
1996-06-05 20:50:50 +00:00
png_ptr->error_ptr = error_ptr;
1996-01-26 07:38:47 +00:00
png_ptr->error_fn = error_fn;
png_ptr->warning_fn = warning_fn;
1995-12-19 09:22:19 +00:00
}
1996-06-05 20:50:50 +00:00
/* This function returns a pointer to the error_ptr associated with the user
1996-01-26 07:38:47 +00:00
functions. The application should free any memory associated with this
pointer before png_write_destroy and png_read_destroy are called. */
1995-12-19 09:22:19 +00:00
png_voidp
1996-06-05 20:50:50 +00:00
png_get_error_ptr(png_structp png_ptr)
1995-12-19 09:22:19 +00:00
{
1996-06-05 20:50:50 +00:00
return png_ptr->error_ptr;
1995-12-19 09:22:19 +00:00
}