PNGERROR.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:4k
源码类别:

图片显示

开发平台:

Visual C++

  1. /* pngerror.c - stub functions for i/o and memory allocation
  2.    libpng 1.0 beta 3 - version 0.89
  3.    For conditions of distribution and use, see copyright notice in png.h
  4.    Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
  5.    May 25, 1996
  6.    This file provides a location for all error handling.  Users which
  7.    need special error handling are expected to write replacement functions
  8.    and use png_set_error_fn() to use those functions.  See the instructions
  9.    at each function. */
  10. #define PNG_INTERNAL
  11. #include "png.h"
  12. static void png_default_error PNGARG((png_structp png_ptr,
  13.                                       png_const_charp message));
  14. static void png_default_warning PNGARG((png_structp png_ptr,
  15.                                         png_const_charp message));
  16. /* This function is called whenever there is a fatal error.  This function
  17.    should not be changed.  If there is a need to handle errors differently,
  18.    you should supply a replacement error function and use png_set_error_fn()
  19.    to replace the error function at run-time. */
  20. void
  21. png_error(png_structp png_ptr, png_const_charp message)
  22. {
  23.    if (png_ptr->error_fn)
  24.       (*(png_ptr->error_fn))(png_ptr, message);
  25.    /* if the following returns or doesn't exist, use the default function,
  26.       which will not return */
  27.    png_default_error(png_ptr, message);
  28. }
  29. /* This function is called whenever there is a non-fatal error.  This function
  30.    should not be changed.  If there is a need to handle warnings differently,
  31.    you should supply a replacement warning function and use
  32.    png_set_error_fn() to replace the warning function at run-time. */
  33. void
  34. png_warning(png_structp png_ptr, png_const_charp message)
  35. {
  36.    if (png_ptr->warning_fn)
  37.       (*(png_ptr->warning_fn))(png_ptr, message);
  38.    else
  39.       png_default_warning(png_ptr, message);
  40. }
  41. /* This is the default error handling function.  Note that replacements for
  42.    this function MUST NOT RETURN, or the program will likely crash.  This
  43.    function is used by default, or if the program supplies NULL for the
  44.    error function pointer in png_set_error_fn(). */
  45. static void
  46. png_default_error(png_structp png_ptr, png_const_charp message)
  47. {
  48. #ifndef PNG_NO_STDIO
  49.    fprintf(stderr, "libpng error: %sn", message);
  50. #endif
  51. #ifdef USE_FAR_KEYWORD
  52.    {
  53.       jmp_buf jmpbuf;
  54.       png_memcpy(jmpbuf,png_ptr->jmpbuf,sizeof(jmp_buf));
  55.       longjmp(jmpbuf, 1);
  56.    }
  57. #else
  58.    longjmp(png_ptr->jmpbuf, 1);
  59. #endif
  60. }
  61. /* This function is called when there is a warning, but the library thinks
  62.    it can continue anyway.  Replacement functions don't have to do anything
  63.    here if you don't want to.  In the default configuration, png_ptr is
  64.    not used, but it is passed in case it may be useful. */
  65. static void
  66. png_default_warning(png_structp png_ptr, png_const_charp message)
  67. {
  68.    if (!png_ptr)
  69.       return;
  70. #ifndef PNG_NO_STDIO
  71.    fprintf(stderr, "libpng warning: %sn", message);
  72. #endif
  73. }
  74. /* This function is called when the application wants to use another method
  75.    of handling errors and warnings.  Note that the error function MUST NOT
  76.    return to the calling routine or serious problems will occur.  The return
  77.    method used in the default routine calls longjmp(png_ptr->jmpbuf, 1) */
  78. void
  79. png_set_error_fn(png_structp png_ptr, png_voidp error_ptr,
  80.    png_error_ptr error_fn, png_error_ptr warning_fn)
  81. {
  82.    png_ptr->error_ptr = error_ptr;
  83.    png_ptr->error_fn = error_fn;
  84.    png_ptr->warning_fn = warning_fn;
  85. }
  86. /* This function returns a pointer to the error_ptr associated with the user
  87.    functions.  The application should free any memory associated with this
  88.    pointer before png_write_destroy and png_read_destroy are called. */
  89. png_voidp
  90. png_get_error_ptr(png_structp png_ptr)
  91. {
  92.    return png_ptr->error_ptr;
  93. }