blob: 3c9c72d80fa3e6c45ff90cc6de4c26a7b54c3fdd [file] [log] [blame]
Guy Schalnat6d764711995-12-19 03:22:19 -06001
2/* pngerror.c - stub functions for i/o and memory allocation
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrson311c8472009-11-20 09:45:08 -06004 * Last changed in libpng 1.4.0 [November 20, 2009]
Glenn Randers-Pehrson79134c62009-02-14 10:32:18 -06005 * Copyright (c) 1998-2009 Glenn Randers-Pehrson
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06008 *
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05009 * This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -050010 * For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -050011 * and license in png.h
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -050012 *
Glenn Randers-Pehrson8686fff1998-05-21 09:27:50 -050013 * This file provides a location for all error handling. Users who
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060014 * need special error handling are expected to write replacement functions
15 * and use png_set_error_fn() to use those functions. See the instructions
16 * at each function.
17 */
Guy Schalnat6d764711995-12-19 03:22:19 -060018
Guy Schalnat6d764711995-12-19 03:22:19 -060019#include "png.h"
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050020#if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
Glenn Randers-Pehrsonbeb572e2006-08-19 13:59:24 -050021#include "pngpriv.h"
Guy Schalnat6d764711995-12-19 03:22:19 -060022
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050023static void /* PRIVATE */
24png_default_error PNGARG((png_structp png_ptr,
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -060025 png_const_charp error_message)) PNG_NORETURN;
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050026#ifdef PNG_WARNINGS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050027static void /* PRIVATE */
28png_default_warning PNGARG((png_structp png_ptr,
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -050029 png_const_charp warning_message));
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050030#endif /* PNG_WARNINGS_SUPPORTED */
Guy Schalnate5a37791996-06-05 15:50:50 -050031
Guy Schalnat69b14481996-01-10 02:56:49 -060032/* This function is called whenever there is a fatal error. This function
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060033 * should not be changed. If there is a need to handle errors differently,
34 * you should supply a replacement error function and use png_set_error_fn()
35 * to replace the error function at run-time.
36 */
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050037#ifdef PNG_ERROR_TEXT_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -050038void PNGAPI
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -050039png_error(png_structp png_ptr, png_const_charp error_message)
Guy Schalnat6d764711995-12-19 03:22:19 -060040{
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -050041#ifdef PNG_ERROR_NUMBERS_SUPPORTED
42 char msg[16];
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -060043 if (png_ptr != NULL)
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -050044 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050045 if (png_ptr->flags&
46 (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
47 {
Glenn Randers-Pehrson43aaf6e2008-08-05 22:17:03 -050048 if (*error_message == PNG_LITERAL_SHARP)
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -050049 {
50 /* Strip "#nnnn " from beginning of error message. */
51 int offset;
52 for (offset = 1; offset<15; offset++)
53 if (error_message[offset] == ' ')
54 break;
55 if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
56 {
57 int i;
58 for (i = 0; i < offset - 1; i++)
59 msg[i] = error_message[i + 1];
60 msg[i - 1] = '\0';
61 error_message = msg;
62 }
63 else
64 error_message += offset;
65 }
66 else
67 {
68 if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
69 {
70 msg[0] = '0';
71 msg[1] = '\0';
72 error_message = msg;
73 }
74 }
75 }
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -050076 }
77#endif
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -050078 if (png_ptr != NULL && png_ptr->error_fn != NULL)
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -050079 (*(png_ptr->error_fn))(png_ptr, error_message);
Guy Schalnat6d764711995-12-19 03:22:19 -060080
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -050081 /* If the custom handler doesn't exist, or if it returns,
82 use the default handler, which will not return. */
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -050083 png_default_error(png_ptr, error_message);
Guy Schalnat6d764711995-12-19 03:22:19 -060084}
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050085#else
86void PNGAPI
87png_err(png_structp png_ptr)
88{
89 if (png_ptr != NULL && png_ptr->error_fn != NULL)
90 (*(png_ptr->error_fn))(png_ptr, '\0');
Guy Schalnat6d764711995-12-19 03:22:19 -060091
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050092 /* If the custom handler doesn't exist, or if it returns,
93 use the default handler, which will not return. */
94 png_default_error(png_ptr, '\0');
95}
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050096#endif /* PNG_ERROR_TEXT_SUPPORTED */
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -050097
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -050098#ifdef PNG_WARNINGS_SUPPORTED
Guy Schalnat69b14481996-01-10 02:56:49 -060099/* This function is called whenever there is a non-fatal error. This function
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600100 * should not be changed. If there is a need to handle warnings differently,
101 * you should supply a replacement warning function and use
102 * png_set_error_fn() to replace the warning function at run-time.
103 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500104void PNGAPI
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500105png_warning(png_structp png_ptr, png_const_charp warning_message)
Guy Schalnat6d764711995-12-19 03:22:19 -0600106{
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500107 int offset = 0;
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600108 if (png_ptr != NULL)
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500109 {
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600110#ifdef PNG_ERROR_NUMBERS_SUPPORTED
111 if (png_ptr->flags&
112 (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
113#endif
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500114 {
115 if (*warning_message == PNG_LITERAL_SHARP)
116 {
117 for (offset = 1; offset < 15; offset++)
118 if (warning_message[offset] == ' ')
119 break;
120 }
121 }
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500122 }
Glenn Randers-Pehrson398b5a32008-11-23 06:48:29 -0600123 if (png_ptr != NULL && png_ptr->warning_fn != NULL)
124 (*(png_ptr->warning_fn))(png_ptr, warning_message + offset);
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600125 else
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500126 png_default_warning(png_ptr, warning_message + offset);
Guy Schalnat6d764711995-12-19 03:22:19 -0600127}
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500128#endif /* PNG_WARNINGS_SUPPORTED */
Guy Schalnat6d764711995-12-19 03:22:19 -0600129
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500130#ifdef PNG_BENIGN_ERRORS_SUPPORTED
131void PNGAPI
132png_benign_error(png_structp png_ptr, png_const_charp error_message)
133{
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500134 if (png_ptr->flags & PNG_FLAG_BENIGN_ERRORS_WARN)
135 png_warning(png_ptr, error_message);
136 else
137 png_error(png_ptr, error_message);
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500138}
139#endif
140
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500141/* These utilities are used internally to build an error message that relates
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600142 * to the current chunk. The chunk name comes from png_ptr->chunk_name,
143 * this is used to prefix the message. The message is limited in length
144 * to 63 bytes, the name characters are output as hex digits wrapped in []
145 * if the character is invalid.
146 */
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500147#define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
Glenn Randers-Pehrson7cd899c1998-03-07 16:17:42 -0600148static PNG_CONST char png_digit[16] = {
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -0500149 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
150 'A', 'B', 'C', 'D', 'E', 'F'
151};
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600152
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500153#define PNG_MAX_ERROR_TEXT 64
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500154#if defined(PNG_WARNINGS_SUPPORTED) || defined(PNG_ERROR_TEXT_SUPPORTED)
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500155static void /* PRIVATE */
Glenn Randers-Pehrson82ae3832001-04-20 10:32:10 -0500156png_format_buffer(png_structp png_ptr, png_charp buffer, png_const_charp
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500157 error_message)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600158{
159 int iout = 0, iin = 0;
160
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600161 while (iin < 4)
162 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600163 int c = png_ptr->chunk_name[iin++];
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600164 if (isnonalpha(c))
165 {
Glenn Randers-Pehrson79084212008-08-04 13:31:41 -0500166 buffer[iout++] = PNG_LITERAL_LEFT_SQUARE_BRACKET;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600167 buffer[iout++] = png_digit[(c & 0xf0) >> 4];
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600168 buffer[iout++] = png_digit[c & 0x0f];
Glenn Randers-Pehrson79084212008-08-04 13:31:41 -0500169 buffer[iout++] = PNG_LITERAL_RIGHT_SQUARE_BRACKET;
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600170 }
171 else
172 {
Glenn Randers-Pehrson860ab2b1999-10-14 07:43:10 -0500173 buffer[iout++] = (png_byte)c;
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600174 }
175 }
176
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500177 if (error_message == NULL)
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500178 buffer[iout] = '\0';
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600179 else
180 {
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600181 buffer[iout++] = ':';
182 buffer[iout++] = ' ';
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500183 png_memcpy(buffer + iout, error_message, PNG_MAX_ERROR_TEXT);
184 buffer[iout + PNG_MAX_ERROR_TEXT - 1] = '\0';
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600185 }
186}
187
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500188#ifdef PNG_READ_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500189void PNGAPI
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500190png_chunk_error(png_structp png_ptr, png_const_charp error_message)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600191{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500192 char msg[18+PNG_MAX_ERROR_TEXT];
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600193 if (png_ptr == NULL)
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500194 png_error(png_ptr, error_message);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500195 else
196 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500197 png_format_buffer(png_ptr, msg, error_message);
198 png_error(png_ptr, msg);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500199 }
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600200}
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500201#endif /* PNG_READ_SUPPORTED */
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500202#endif /* PNG_WARNINGS_SUPPORTED || PNG_ERROR_TEXT_SUPPORTED */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600203
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500204#ifdef PNG_WARNINGS_SUPPORTED
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500205void PNGAPI
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500206png_chunk_warning(png_structp png_ptr, png_const_charp warning_message)
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600207{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500208 char msg[18+PNG_MAX_ERROR_TEXT];
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600209 if (png_ptr == NULL)
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500210 png_warning(png_ptr, warning_message);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500211 else
212 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500213 png_format_buffer(png_ptr, msg, warning_message);
214 png_warning(png_ptr, msg);
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500215 }
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600216}
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500217#endif /* PNG_WARNINGS_SUPPORTED */
Glenn Randers-Pehrson70e3f541998-01-03 22:40:55 -0600218
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500219#ifdef PNG_READ_SUPPORTED
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500220#ifdef PNG_BENIGN_ERRORS_SUPPORTED
221void PNGAPI
222png_chunk_benign_error(png_structp png_ptr, png_const_charp error_message)
223{
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500224 if (png_ptr->flags & PNG_FLAG_BENIGN_ERRORS_WARN)
225 png_chunk_warning(png_ptr, error_message);
226 else
227 png_chunk_error(png_ptr, error_message);
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500228}
229#endif
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500230#endif /* PNG_READ_SUPPORTED */
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500231
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600232/* This is the default error handling function. Note that replacements for
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600233 * this function MUST NOT RETURN, or the program will likely crash. This
234 * function is used by default, or if the program supplies NULL for the
235 * error function pointer in png_set_error_fn().
236 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500237static void /* PRIVATE */
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500238png_default_error(png_structp png_ptr, png_const_charp error_message)
Guy Schalnat6d764711995-12-19 03:22:19 -0600239{
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500240#ifdef PNG_CONSOLE_IO_SUPPORTED
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500241#ifdef PNG_ERROR_NUMBERS_SUPPORTED
Glenn Randers-Pehrson43aaf6e2008-08-05 22:17:03 -0500242 if (*error_message == PNG_LITERAL_SHARP)
Glenn Randers-Pehrson8fb550c2009-03-21 08:15:32 -0500243 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500244 /* Strip "#nnnn " from beginning of error message. */
245 int offset;
246 char error_number[16];
247 for (offset = 0; offset<15; offset++)
248 {
Glenn Randers-Pehrson895a9c92008-07-25 08:51:18 -0500249 error_number[offset] = error_message[offset + 1];
250 if (error_message[offset] == ' ')
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500251 break;
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500252 }
253 if ((offset > 1) && (offset < 15))
254 {
255 error_number[offset - 1] = '\0';
256 fprintf(stderr, "libpng error no. %s: %s",
257 error_number, error_message + offset + 1);
258 fprintf(stderr, PNG_STRING_NEWLINE);
259 }
260 else
261 {
262 fprintf(stderr, "libpng error: %s, offset=%d",
263 error_message, offset);
264 fprintf(stderr, PNG_STRING_NEWLINE);
265 }
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500266 }
267 else
268#endif
Glenn Randers-Pehrsone0784c72008-08-09 07:11:44 -0500269 {
270 fprintf(stderr, "libpng error: %s", error_message);
271 fprintf(stderr, PNG_STRING_NEWLINE);
272 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600273#endif
274
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600275#ifdef PNG_SETJMP_SUPPORTED
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600276 if (png_ptr)
277 {
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600278# ifdef USE_FAR_KEYWORD
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600279 {
280 jmp_buf jmpbuf;
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500281 png_memcpy(jmpbuf, png_ptr->jmpbuf, png_sizeof(jmp_buf));
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600282 longjmp(jmpbuf, 1);
283 }
Glenn Randers-Pehrson61c32d92000-02-04 23:40:16 -0600284# else
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600285 longjmp(png_ptr->jmpbuf, 1);
Glenn Randers-Pehrson6b12c082006-11-14 10:53:30 -0600286# endif
287 }
Guy Schalnat6d764711995-12-19 03:22:19 -0600288#endif
Glenn Randers-Pehrsond29033f2009-11-07 10:46:42 -0600289 /* Here if not setjmp support or if png_ptr is null. */
290 PNG_ABORT();
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500291#ifndef PNG_CONSOLE_IO_SUPPORTED
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500292 error_message = error_message; /* Make compiler happy */
Glenn Randers-Pehrson272489d2004-08-04 06:34:52 -0500293#endif
Guy Schalnat6d764711995-12-19 03:22:19 -0600294}
295
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500296#ifdef PNG_WARNINGS_SUPPORTED
Guy Schalnat69b14481996-01-10 02:56:49 -0600297/* This function is called when there is a warning, but the library thinks
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600298 * it can continue anyway. Replacement functions don't have to do anything
Glenn Randers-Pehrson345bc271998-06-14 14:43:31 -0500299 * here if you don't want them to. In the default configuration, png_ptr is
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600300 * not used, but it is passed in case it may be useful.
301 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500302static void /* PRIVATE */
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500303png_default_warning(png_structp png_ptr, png_const_charp warning_message)
Guy Schalnat6d764711995-12-19 03:22:19 -0600304{
Glenn Randers-Pehrson2f89d762009-10-13 18:04:41 -0500305#ifdef PNG_CONSOLE_IO_SUPPORTED
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500306# ifdef PNG_ERROR_NUMBERS_SUPPORTED
Glenn Randers-Pehrson43aaf6e2008-08-05 22:17:03 -0500307 if (*warning_message == PNG_LITERAL_SHARP)
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500308 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500309 int offset;
310 char warning_number[16];
311 for (offset = 0; offset < 15; offset++)
312 {
313 warning_number[offset] = warning_message[offset + 1];
314 if (warning_message[offset] == ' ')
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500315 break;
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500316 }
317 if ((offset > 1) && (offset < 15))
318 {
319 warning_number[offset + 1] = '\0';
320 fprintf(stderr, "libpng warning no. %s: %s",
321 warning_number, warning_message + offset);
322 fprintf(stderr, PNG_STRING_NEWLINE);
323 }
324 else
325 {
326 fprintf(stderr, "libpng warning: %s",
327 warning_message);
328 fprintf(stderr, PNG_STRING_NEWLINE);
329 }
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500330 }
331 else
332# endif
Glenn Randers-Pehrsone0784c72008-08-09 07:11:44 -0500333 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500334 fprintf(stderr, "libpng warning: %s", warning_message);
335 fprintf(stderr, PNG_STRING_NEWLINE);
Glenn Randers-Pehrsone0784c72008-08-09 07:11:44 -0500336 }
Glenn Randers-Pehrson104622b2000-05-29 08:58:03 -0500337#else
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500338 warning_message = warning_message; /* Make compiler happy */
Guy Schalnat6d764711995-12-19 03:22:19 -0600339#endif
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500340 png_ptr = png_ptr; /* Make compiler happy */
Guy Schalnat6d764711995-12-19 03:22:19 -0600341}
Glenn Randers-Pehrsondbd40142009-08-31 08:42:02 -0500342#endif /* PNG_WARNINGS_SUPPORTED */
Guy Schalnat6d764711995-12-19 03:22:19 -0600343
Guy Schalnat69b14481996-01-10 02:56:49 -0600344/* This function is called when the application wants to use another method
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600345 * of handling errors and warnings. Note that the error function MUST NOT
346 * return to the calling routine or serious problems will occur. The return
347 * method used in the default routine calls longjmp(png_ptr->jmpbuf, 1)
348 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500349void PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500350png_set_error_fn(png_structp png_ptr, png_voidp error_ptr,
351 png_error_ptr error_fn, png_error_ptr warning_fn)
Guy Schalnat6d764711995-12-19 03:22:19 -0600352{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600353 if (png_ptr == NULL)
354 return;
Guy Schalnate5a37791996-06-05 15:50:50 -0500355 png_ptr->error_ptr = error_ptr;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600356 png_ptr->error_fn = error_fn;
357 png_ptr->warning_fn = warning_fn;
Guy Schalnat6d764711995-12-19 03:22:19 -0600358}
359
360
Guy Schalnate5a37791996-06-05 15:50:50 -0500361/* This function returns a pointer to the error_ptr associated with the user
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600362 * functions. The application should free any memory associated with this
363 * pointer before png_write_destroy and png_read_destroy are called.
364 */
Glenn Randers-Pehrson75294572000-05-06 14:09:57 -0500365png_voidp PNGAPI
Guy Schalnate5a37791996-06-05 15:50:50 -0500366png_get_error_ptr(png_structp png_ptr)
Guy Schalnat6d764711995-12-19 03:22:19 -0600367{
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -0600368 if (png_ptr == NULL)
369 return NULL;
Glenn Randers-Pehrsonb2120021998-01-31 20:07:59 -0600370 return ((png_voidp)png_ptr->error_ptr);
Guy Schalnat6d764711995-12-19 03:22:19 -0600371}
372
373
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500374#ifdef PNG_ERROR_NUMBERS_SUPPORTED
Glenn Randers-Pehrson73d57cb2002-03-25 18:49:08 -0600375void PNGAPI
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500376png_set_strip_error_numbers(png_structp png_ptr, png_uint_32 strip_mode)
377{
Glenn Randers-Pehrson145f5c82008-07-10 09:13:13 -0500378 if (png_ptr != NULL)
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500379 {
Glenn Randers-Pehrson4bb4d012009-05-20 12:45:29 -0500380 png_ptr->flags &=
Glenn Randers-Pehrsone68f5a32001-05-14 09:20:53 -0500381 ((~(PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))&strip_mode);
382 }
383}
384#endif
Glenn Randers-Pehrson9c3ab682006-02-20 22:09:05 -0600385#endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */