fltk 1.3.0rc3
About: FLTK (Fast Light Tool Kit) is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. Release candidate.
  SfR Fresh Dox: fltk-1.3.0rc3-source.tar.gz ("inofficial" and yet experimental doxygen-generated source code documentation)  

pngerror.c

Go to the documentation of this file.
00001 
00002 /* pngerror.c - stub functions for i/o and memory allocation
00003  *
00004  * Last changed in libpng 1.2.37 [June 4, 2009]
00005  * Copyright (c) 1998-2009 Glenn Randers-Pehrson
00006  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
00007  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
00008  *
00009  * This code is released under the libpng license.
00010  * For conditions of distribution and use, see the disclaimer
00011  * and license in png.h
00012  *
00013  * This file provides a location for all error handling.  Users who
00014  * need special error handling are expected to write replacement functions
00015  * and use png_set_error_fn() to use those functions.  See the instructions
00016  * at each function.
00017  */
00018 
00019 #define PNG_INTERNAL
00020 #include "png.h"
00021 #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
00022 
00023 static void /* PRIVATE */
00024 png_default_error PNGARG((png_structp png_ptr,
00025   png_const_charp error_message));
00026 #ifndef PNG_NO_WARNINGS
00027 static void /* PRIVATE */
00028 png_default_warning PNGARG((png_structp png_ptr,
00029   png_const_charp warning_message));
00030 #endif /* PNG_NO_WARNINGS */
00031 
00032 /* This function is called whenever there is a fatal error.  This function
00033  * should not be changed.  If there is a need to handle errors differently,
00034  * you should supply a replacement error function and use png_set_error_fn()
00035  * to replace the error function at run-time.
00036  */
00037 #ifndef PNG_NO_ERROR_TEXT
00038 void PNGAPI
00039 png_error(png_structp png_ptr, png_const_charp error_message)
00040 {
00041 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
00042    char msg[16];
00043    if (png_ptr != NULL)
00044    {
00045      if (png_ptr->flags&
00046        (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
00047      {
00048        if (*error_message == '#')
00049        {
00050            /* Strip "#nnnn " from beginning of error message. */
00051            int offset;
00052            for (offset = 1; offset<15; offset++)
00053               if (error_message[offset] == ' ')
00054                   break;
00055            if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
00056            {
00057               int i;
00058               for (i = 0; i < offset - 1; i++)
00059                  msg[i] = error_message[i + 1];
00060               msg[i - 1] = '\0';
00061               error_message = msg;
00062            }
00063            else
00064               error_message += offset;
00065        }
00066        else
00067        {
00068            if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
00069            {
00070               msg[0] = '0';
00071               msg[1] = '\0';
00072               error_message = msg;
00073            }
00074        }
00075      }
00076    }
00077 #endif
00078    if (png_ptr != NULL && png_ptr->error_fn != NULL)
00079       (*(png_ptr->error_fn))(png_ptr, error_message);
00080 
00081    /* If the custom handler doesn't exist, or if it returns,
00082       use the default handler, which will not return. */
00083    png_default_error(png_ptr, error_message);
00084 }
00085 #else
00086 void PNGAPI
00087 png_err(png_structp png_ptr)
00088 {
00089    if (png_ptr != NULL && png_ptr->error_fn != NULL)
00090       (*(png_ptr->error_fn))(png_ptr, '\0');
00091 
00092    /* If the custom handler doesn't exist, or if it returns,
00093       use the default handler, which will not return. */
00094    png_default_error(png_ptr, '\0');
00095 }
00096 #endif /* PNG_NO_ERROR_TEXT */
00097 
00098 #ifndef PNG_NO_WARNINGS
00099 /* This function is called whenever there is a non-fatal error.  This function
00100  * should not be changed.  If there is a need to handle warnings differently,
00101  * you should supply a replacement warning function and use
00102  * png_set_error_fn() to replace the warning function at run-time.
00103  */
00104 void PNGAPI
00105 png_warning(png_structp png_ptr, png_const_charp warning_message)
00106 {
00107    int offset = 0;
00108    if (png_ptr != NULL)
00109    {
00110 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
00111    if (png_ptr->flags&
00112      (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
00113 #endif
00114      {
00115        if (*warning_message == '#')
00116        {
00117            for (offset = 1; offset < 15; offset++)
00118               if (warning_message[offset] == ' ')
00119                   break;
00120        }
00121      }
00122    }
00123    if (png_ptr != NULL && png_ptr->warning_fn != NULL)
00124       (*(png_ptr->warning_fn))(png_ptr, warning_message + offset);
00125    else
00126       png_default_warning(png_ptr, warning_message + offset);
00127 }
00128 #endif /* PNG_NO_WARNINGS */
00129 
00130 
00131 /* These utilities are used internally to build an error message that relates
00132  * to the current chunk.  The chunk name comes from png_ptr->chunk_name,
00133  * this is used to prefix the message.  The message is limited in length
00134  * to 63 bytes, the name characters are output as hex digits wrapped in []
00135  * if the character is invalid.
00136  */
00137 #define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
00138 static PNG_CONST char png_digit[16] = {
00139    '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
00140    'A', 'B', 'C', 'D', 'E', 'F'
00141 };
00142 
00143 #define PNG_MAX_ERROR_TEXT 64
00144 
00145 #if !defined(PNG_NO_WARNINGS) || !defined(PNG_NO_ERROR_TEXT)
00146 static void /* PRIVATE */
00147 png_format_buffer(png_structp png_ptr, png_charp buffer, png_const_charp
00148    error_message)
00149 {
00150    int iout = 0, iin = 0;
00151 
00152    while (iin < 4)
00153    {
00154       int c = png_ptr->chunk_name[iin++];
00155       if (isnonalpha(c))
00156       {
00157          buffer[iout++] = '[';
00158          buffer[iout++] = png_digit[(c & 0xf0) >> 4];
00159          buffer[iout++] = png_digit[c & 0x0f];
00160          buffer[iout++] = ']';
00161       }
00162       else
00163       {
00164          buffer[iout++] = (png_byte)c;
00165       }
00166    }
00167 
00168    if (error_message == NULL)
00169       buffer[iout] = '\0';
00170    else
00171    {
00172       buffer[iout++] = ':';
00173       buffer[iout++] = ' ';
00174       png_memcpy(buffer + iout, error_message, PNG_MAX_ERROR_TEXT);
00175       buffer[iout + PNG_MAX_ERROR_TEXT - 1] = '\0';
00176    }
00177 }
00178 
00179 #ifdef PNG_READ_SUPPORTED
00180 void PNGAPI
00181 png_chunk_error(png_structp png_ptr, png_const_charp error_message)
00182 {
00183    char msg[18+PNG_MAX_ERROR_TEXT];
00184    if (png_ptr == NULL)
00185      png_error(png_ptr, error_message);
00186    else
00187    {
00188      png_format_buffer(png_ptr, msg, error_message);
00189      png_error(png_ptr, msg);
00190    }
00191 }
00192 #endif /* PNG_READ_SUPPORTED */
00193 #endif /* !defined(PNG_NO_WARNINGS) || !defined(PNG_NO_ERROR_TEXT) */
00194 
00195 #ifndef PNG_NO_WARNINGS
00196 void PNGAPI
00197 png_chunk_warning(png_structp png_ptr, png_const_charp warning_message)
00198 {
00199    char msg[18+PNG_MAX_ERROR_TEXT];
00200    if (png_ptr == NULL)
00201      png_warning(png_ptr, warning_message);
00202    else
00203    {
00204      png_format_buffer(png_ptr, msg, warning_message);
00205      png_warning(png_ptr, msg);
00206    }
00207 }
00208 #endif /* PNG_NO_WARNINGS */
00209 
00210 
00211 /* This is the default error handling function.  Note that replacements for
00212  * this function MUST NOT RETURN, or the program will likely crash.  This
00213  * function is used by default, or if the program supplies NULL for the
00214  * error function pointer in png_set_error_fn().
00215  */
00216 static void /* PRIVATE */
00217 png_default_error(png_structp png_ptr, png_const_charp error_message)
00218 {
00219 #ifndef PNG_NO_CONSOLE_IO
00220 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
00221    if (*error_message == '#')
00222    {
00223      /* Strip "#nnnn " from beginning of error message. */
00224      int offset;
00225      char error_number[16];
00226      for (offset = 0; offset<15; offset++)
00227      {
00228          error_number[offset] = error_message[offset + 1];
00229          if (error_message[offset] == ' ')
00230              break;
00231      }
00232      if ((offset > 1) && (offset < 15))
00233      {
00234        error_number[offset - 1] = '\0';
00235        fprintf(stderr, "libpng error no. %s: %s",
00236           error_number, error_message + offset + 1);
00237        fprintf(stderr, PNG_STRING_NEWLINE);
00238      }
00239      else
00240      {
00241        fprintf(stderr, "libpng error: %s, offset=%d",
00242           error_message, offset);
00243        fprintf(stderr, PNG_STRING_NEWLINE);
00244      }
00245    }
00246    else
00247 #endif
00248    {
00249       fprintf(stderr, "libpng error: %s", error_message);
00250       fprintf(stderr, PNG_STRING_NEWLINE);
00251    }
00252 #endif
00253 
00254 #ifdef PNG_SETJMP_SUPPORTED
00255    if (png_ptr)
00256    {
00257 #  ifdef USE_FAR_KEYWORD
00258    {
00259       jmp_buf jmpbuf;
00260       png_memcpy(jmpbuf, png_ptr->jmpbuf, png_sizeof(jmp_buf));
00261       longjmp(jmpbuf, 1);
00262    }
00263 #  else
00264    longjmp(png_ptr->jmpbuf, 1);
00265 #  endif
00266    }
00267 #else
00268    PNG_ABORT();
00269 #endif
00270 #ifdef PNG_NO_CONSOLE_IO
00271    error_message = error_message; /* Make compiler happy */
00272 #endif
00273 }
00274 
00275 #ifndef PNG_NO_WARNINGS
00276 /* This function is called when there is a warning, but the library thinks
00277  * it can continue anyway.  Replacement functions don't have to do anything
00278  * here if you don't want them to.  In the default configuration, png_ptr is
00279  * not used, but it is passed in case it may be useful.
00280  */
00281 static void /* PRIVATE */
00282 png_default_warning(png_structp png_ptr, png_const_charp warning_message)
00283 {
00284 #ifndef PNG_NO_CONSOLE_IO
00285 #  ifdef PNG_ERROR_NUMBERS_SUPPORTED
00286    if (*warning_message == '#')
00287    {
00288      int offset;
00289      char warning_number[16];
00290      for (offset = 0; offset < 15; offset++)
00291      {
00292         warning_number[offset] = warning_message[offset + 1];
00293         if (warning_message[offset] == ' ')
00294             break;
00295      }
00296      if ((offset > 1) && (offset < 15))
00297      {
00298        warning_number[offset + 1] = '\0';
00299        fprintf(stderr, "libpng warning no. %s: %s",
00300           warning_number, warning_message + offset);
00301        fprintf(stderr, PNG_STRING_NEWLINE);
00302      }
00303      else
00304      {
00305        fprintf(stderr, "libpng warning: %s",
00306           warning_message);
00307        fprintf(stderr, PNG_STRING_NEWLINE);
00308      }
00309    }
00310    else
00311 #  endif
00312    {
00313      fprintf(stderr, "libpng warning: %s", warning_message);
00314      fprintf(stderr, PNG_STRING_NEWLINE);
00315    }
00316 #else
00317    warning_message = warning_message; /* Make compiler happy */
00318 #endif
00319    png_ptr = png_ptr; /* Make compiler happy */
00320 }
00321 #endif /* PNG_NO_WARNINGS */
00322 
00323 /* This function is called when the application wants to use another method
00324  * of handling errors and warnings.  Note that the error function MUST NOT
00325  * return to the calling routine or serious problems will occur.  The return
00326  * method used in the default routine calls longjmp(png_ptr->jmpbuf, 1)
00327  */
00328 void PNGAPI
00329 png_set_error_fn(png_structp png_ptr, png_voidp error_ptr,
00330    png_error_ptr error_fn, png_error_ptr warning_fn)
00331 {
00332    if (png_ptr == NULL)
00333       return;
00334    png_ptr->error_ptr = error_ptr;
00335    png_ptr->error_fn = error_fn;
00336    png_ptr->warning_fn = warning_fn;
00337 }
00338 
00339 
00340 /* This function returns a pointer to the error_ptr associated with the user
00341  * functions.  The application should free any memory associated with this
00342  * pointer before png_write_destroy and png_read_destroy are called.
00343  */
00344 png_voidp PNGAPI
00345 png_get_error_ptr(png_structp png_ptr)
00346 {
00347    if (png_ptr == NULL)
00348       return NULL;
00349    return ((png_voidp)png_ptr->error_ptr);
00350 }
00351 
00352 
00353 #ifdef PNG_ERROR_NUMBERS_SUPPORTED
00354 void PNGAPI
00355 png_set_strip_error_numbers(png_structp png_ptr, png_uint_32 strip_mode)
00356 {
00357    if (png_ptr != NULL)
00358    {
00359      png_ptr->flags &=
00360        ((~(PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))&strip_mode);
00361    }
00362 }
00363 #endif
00364 #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */