pngerror.c
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:10k
源码类别:

界面编程

开发平台:

Visual C++

  1. /* pngerror.c - stub functions for i/o and memory allocation
  2.  *
  3.  * Last changed in libpng 1.2.34 [December 18, 2008]
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2008 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  *
  9.  * This file provides a location for all error handling.  Users who
  10.  * need special error handling are expected to write replacement functions
  11.  * and use png_set_error_fn() to use those functions.  See the instructions
  12.  * at each function.
  13.  */
  14. #define PNG_INTERNAL
  15. #include "png.h"
  16. #if defined(PNG_READ_SUPPORTED) || defined(PNG_WRITE_SUPPORTED)
  17. static void /* PRIVATE */
  18. png_default_error PNGARG((png_structp png_ptr,
  19.   png_const_charp error_message));
  20. #ifndef PNG_NO_WARNINGS
  21. static void /* PRIVATE */
  22. png_default_warning PNGARG((png_structp png_ptr,
  23.   png_const_charp warning_message));
  24. #endif /* PNG_NO_WARNINGS */
  25. /* This function is called whenever there is a fatal error.  This function
  26.  * should not be changed.  If there is a need to handle errors differently,
  27.  * you should supply a replacement error function and use png_set_error_fn()
  28.  * to replace the error function at run-time.
  29.  */
  30. #ifndef PNG_NO_ERROR_TEXT
  31. void PNGAPI
  32. png_error(png_structp png_ptr, png_const_charp error_message)
  33. {
  34. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  35.    char msg[16];
  36.    if (png_ptr != NULL)
  37.    {
  38.      if (png_ptr->flags&
  39.        (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
  40.      {
  41.        if (*error_message == '#')
  42.        {
  43.          /* Strip "#nnnn " from beginning of error message. */
  44.            int offset;
  45.            for (offset = 1; offset<15; offset++)
  46.               if (error_message[offset] == ' ')
  47.                   break;
  48.            if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
  49.            {
  50.               int i;
  51.               for (i = 0; i < offset - 1; i++)
  52.                  msg[i] = error_message[i + 1];
  53.               msg[i - 1] = '';
  54.               error_message = msg;
  55.            }
  56.            else
  57.               error_message += offset;
  58.        }
  59.        else
  60.        {
  61.            if (png_ptr->flags&PNG_FLAG_STRIP_ERROR_TEXT)
  62.            {
  63.               msg[0] = '0';
  64.               msg[1] = '';
  65.               error_message = msg;
  66.            }
  67.        }
  68.      }
  69.    }
  70. #endif
  71.    if (png_ptr != NULL && png_ptr->error_fn != NULL)
  72.       (*(png_ptr->error_fn))(png_ptr, error_message);
  73.    /* If the custom handler doesn't exist, or if it returns,
  74.       use the default handler, which will not return. */
  75.    png_default_error(png_ptr, error_message);
  76. }
  77. #else
  78. void PNGAPI
  79. png_err(png_structp png_ptr)
  80. {
  81.    if (png_ptr != NULL && png_ptr->error_fn != NULL)
  82.       (*(png_ptr->error_fn))(png_ptr, '');
  83.    /* If the custom handler doesn't exist, or if it returns,
  84.       use the default handler, which will not return. */
  85.    png_default_error(png_ptr, '');
  86. }
  87. #endif /* PNG_NO_ERROR_TEXT */
  88. #ifndef PNG_NO_WARNINGS
  89. /* This function is called whenever there is a non-fatal error.  This function
  90.  * should not be changed.  If there is a need to handle warnings differently,
  91.  * you should supply a replacement warning function and use
  92.  * png_set_error_fn() to replace the warning function at run-time.
  93.  */
  94. void PNGAPI
  95. png_warning(png_structp png_ptr, png_const_charp warning_message)
  96. {
  97.    int offset = 0;
  98.    if (png_ptr != NULL)
  99.    {
  100. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  101.    if (png_ptr->flags&
  102.      (PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))
  103. #endif
  104.      {
  105.        if (*warning_message == '#')
  106.        {
  107.            for (offset = 1; offset < 15; offset++)
  108.               if (warning_message[offset] == ' ')
  109.                   break;
  110.        }
  111.      }
  112.    }
  113.    if (png_ptr != NULL && png_ptr->warning_fn != NULL)
  114.       (*(png_ptr->warning_fn))(png_ptr, warning_message + offset);
  115.    else
  116.       png_default_warning(png_ptr, warning_message + offset);
  117. }
  118. #endif /* PNG_NO_WARNINGS */
  119. /* These utilities are used internally to build an error message that relates
  120.  * to the current chunk.  The chunk name comes from png_ptr->chunk_name,
  121.  * this is used to prefix the message.  The message is limited in length
  122.  * to 63 bytes, the name characters are output as hex digits wrapped in []
  123.  * if the character is invalid.
  124.  */
  125. #define isnonalpha(c) ((c) < 65 || (c) > 122 || ((c) > 90 && (c) < 97))
  126. static PNG_CONST char png_digit[16] = {
  127.    '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
  128.    'A', 'B', 'C', 'D', 'E', 'F'
  129. };
  130. #define PNG_MAX_ERROR_TEXT 64
  131. #if !defined(PNG_NO_WARNINGS) || !defined(PNG_NO_ERROR_TEXT)
  132. static void /* PRIVATE */
  133. png_format_buffer(png_structp png_ptr, png_charp buffer, png_const_charp
  134.    error_message)
  135. {
  136.    int iout = 0, iin = 0;
  137.    while (iin < 4)
  138.    {
  139.       int c = png_ptr->chunk_name[iin++];
  140.       if (isnonalpha(c))
  141.       {
  142.          buffer[iout++] = '[';
  143.          buffer[iout++] = png_digit[(c & 0xf0) >> 4];
  144.          buffer[iout++] = png_digit[c & 0x0f];
  145.          buffer[iout++] = ']';
  146.       }
  147.       else
  148.       {
  149.          buffer[iout++] = (png_byte)c;
  150.       }
  151.    }
  152.    if (error_message == NULL)
  153.       buffer[iout] = '';
  154.    else
  155.    {
  156.       buffer[iout++] = ':';
  157.       buffer[iout++] = ' ';
  158.       png_memcpy(buffer + iout, error_message, PNG_MAX_ERROR_TEXT);
  159.       buffer[iout + PNG_MAX_ERROR_TEXT - 1] = '';
  160.    }
  161. }
  162. #ifdef PNG_READ_SUPPORTED
  163. void PNGAPI
  164. png_chunk_error(png_structp png_ptr, png_const_charp error_message)
  165. {
  166.    char msg[18+PNG_MAX_ERROR_TEXT];
  167.    if (png_ptr == NULL)
  168.      png_error(png_ptr, error_message);
  169.    else
  170.    {
  171.      png_format_buffer(png_ptr, msg, error_message);
  172.      png_error(png_ptr, msg);
  173.    }
  174. }
  175. #endif /* PNG_READ_SUPPORTED */
  176. #endif /* !defined(PNG_NO_WARNINGS) || !defined(PNG_NO_ERROR_TEXT) */
  177. #ifndef PNG_NO_WARNINGS
  178. void PNGAPI
  179. png_chunk_warning(png_structp png_ptr, png_const_charp warning_message)
  180. {
  181.    char msg[18+PNG_MAX_ERROR_TEXT];
  182.    if (png_ptr == NULL)
  183.      png_warning(png_ptr, warning_message);
  184.    else
  185.    {
  186.      png_format_buffer(png_ptr, msg, warning_message);
  187.      png_warning(png_ptr, msg);
  188.    }
  189. }
  190. #endif /* PNG_NO_WARNINGS */
  191. /* This is the default error handling function.  Note that replacements for
  192.  * this function MUST NOT RETURN, or the program will likely crash.  This
  193.  * function is used by default, or if the program supplies NULL for the
  194.  * error function pointer in png_set_error_fn().
  195.  */
  196. static void /* PRIVATE */
  197. png_default_error(png_structp png_ptr, png_const_charp error_message)
  198. {
  199. #ifndef PNG_NO_CONSOLE_IO
  200. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  201.    if (*error_message == '#')
  202.    {
  203.      /* Strip "#nnnn " from beginning of warning message. */
  204.      int offset;
  205.      char error_number[16];
  206.      for (offset = 0; offset<15; offset++)
  207.      {
  208.          error_number[offset] = error_message[offset + 1];
  209.          if (error_message[offset] == ' ')
  210.              break;
  211.      }
  212.      if ((offset > 1) && (offset < 15))
  213.      {
  214.        error_number[offset - 1] = '';
  215.        fprintf(stderr, "libpng error no. %s: %sn", error_number,
  216.           error_message + offset + 1);
  217.      }
  218.      else
  219.        fprintf(stderr, "libpng error: %s, offset=%dn", error_message, offset);
  220.    }
  221.    else
  222. #endif
  223.    fprintf(stderr, "libpng error: %sn", error_message);
  224. #endif
  225. #ifdef PNG_SETJMP_SUPPORTED
  226.    if (png_ptr)
  227.    {
  228. #  ifdef USE_FAR_KEYWORD
  229.    {
  230.       jmp_buf jmpbuf;
  231.       png_memcpy(jmpbuf, png_ptr->jmpbuf, png_sizeof(jmp_buf));
  232.       longjmp(jmpbuf, 1);
  233.    }
  234. #  else
  235.    longjmp(png_ptr->jmpbuf, 1);
  236. #  endif
  237.    }
  238. #else
  239.    PNG_ABORT();
  240. #endif
  241. #ifdef PNG_NO_CONSOLE_IO
  242.    error_message = error_message; /* make compiler happy */
  243. #endif
  244. }
  245. #ifndef PNG_NO_WARNINGS
  246. /* This function is called when there is a warning, but the library thinks
  247.  * it can continue anyway.  Replacement functions don't have to do anything
  248.  * here if you don't want them to.  In the default configuration, png_ptr is
  249.  * not used, but it is passed in case it may be useful.
  250.  */
  251. static void /* PRIVATE */
  252. png_default_warning(png_structp png_ptr, png_const_charp warning_message)
  253. {
  254. #ifndef PNG_NO_CONSOLE_IO
  255. #  ifdef PNG_ERROR_NUMBERS_SUPPORTED
  256.    if (*warning_message == '#')
  257.    {
  258.      int offset;
  259.      char warning_number[16];
  260.      for (offset = 0; offset < 15; offset++)
  261.      {
  262.         warning_number[offset] = warning_message[offset + 1];
  263.         if (warning_message[offset] == ' ')
  264.             break;
  265.      }
  266.      if ((offset > 1) && (offset < 15))
  267.      {
  268.        warning_number[offset + 1] = '';
  269.        fprintf(stderr, "libpng warning no. %s: %sn", warning_number,
  270.           warning_message + offset);
  271.      }
  272.      else
  273.        fprintf(stderr, "libpng warning: %sn", warning_message);
  274.    }
  275.    else
  276. #  endif
  277.      fprintf(stderr, "libpng warning: %sn", warning_message);
  278. #else
  279.    warning_message = warning_message; /* make compiler happy */
  280. #endif
  281.    png_ptr = png_ptr; /* make compiler happy */
  282. }
  283. #endif /* PNG_NO_WARNINGS */
  284. /* This function is called when the application wants to use another method
  285.  * of handling errors and warnings.  Note that the error function MUST NOT
  286.  * return to the calling routine or serious problems will occur.  The return
  287.  * method used in the default routine calls longjmp(png_ptr->jmpbuf, 1)
  288.  */
  289. void PNGAPI
  290. png_set_error_fn(png_structp png_ptr, png_voidp error_ptr,
  291.    png_error_ptr error_fn, png_error_ptr warning_fn)
  292. {
  293.    if (png_ptr == NULL)
  294.       return;
  295.    png_ptr->error_ptr = error_ptr;
  296.    png_ptr->error_fn = error_fn;
  297.    png_ptr->warning_fn = warning_fn;
  298. }
  299. /* This function returns a pointer to the error_ptr associated with the user
  300.  * functions.  The application should free any memory associated with this
  301.  * pointer before png_write_destroy and png_read_destroy are called.
  302.  */
  303. png_voidp PNGAPI
  304. png_get_error_ptr(png_structp png_ptr)
  305. {
  306.    if (png_ptr == NULL)
  307.       return NULL;
  308.    return ((png_voidp)png_ptr->error_ptr);
  309. }
  310. #ifdef PNG_ERROR_NUMBERS_SUPPORTED
  311. void PNGAPI
  312. png_set_strip_error_numbers(png_structp png_ptr, png_uint_32 strip_mode)
  313. {
  314.    if (png_ptr != NULL)
  315.    {
  316.      png_ptr->flags &=
  317.        ((~(PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))&strip_mode);
  318.    }
  319. }
  320. #endif
  321. #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */