Jerror.c
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:8k
源码类别:

图形图象

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jerror.c
  22.  *
  23.  * Copyright (C) 1991-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file contains simple error-reporting and trace-message routines.
  28.  * These are suitable for Unix-like systems and others where writing to
  29.  * stderr is the right thing to do.  Many applications will want to replace
  30.  * some or all of these routines.
  31.  *
  32.  * These routines are used by both the compression and decompression code.
  33.  */
  34. /* this is not a core library module, so it doesn't define JPEG_INTERNALS */
  35. #include "windows.h"
  36. #include "jinclude.h"
  37. #define HAVE_BOOLEAN 
  38. #include "jpeglib.h"
  39. #include "jversion.h"
  40. #include "jerror.h"
  41. #ifndef EXIT_FAILURE /* define exit() codes if not provided */
  42. #define EXIT_FAILURE  1
  43. #endif
  44. /*
  45.  * Create the message string table.
  46.  * We do this from the master message list in jerror.h by re-reading
  47.  * jerror.h with a suitable definition for macro JMESSAGE.
  48.  * The message table is made an external symbol just in case any applications
  49.  * want to refer to it directly.
  50.  */
  51. #ifdef NEED_SHORT_EXTERNAL_NAMES
  52. #define jpeg_std_message_table jMsgTable
  53. #endif
  54. #define JMESSAGE(code,string) string ,
  55. const char * const jpeg_std_message_table[] = {
  56. #include "jerror.h"
  57.   NULL
  58. };
  59. /*
  60.  * Error exit handler: must not return to caller.
  61.  *
  62.  * Applications may override this if they want to get control back after
  63.  * an error.  Typically one would longjmp somewhere instead of exiting.
  64.  * The setjmp buffer can be made a private field within an expanded error
  65.  * handler object.  Note that the info needed to generate an error message
  66.  * is stored in the error object, so you can generate the message now or
  67.  * later, at your convenience.
  68.  * You should make sure that the JPEG object is cleaned up (with jpeg_abort
  69.  * or jpeg_destroy) at some point.
  70.  */
  71. METHODDEF(void)
  72. error_exit (j_common_ptr cinfo)
  73. {
  74.   /* Always display the message */
  75.   (*cinfo->err->output_message) (cinfo);
  76.   /* Let the memory manager delete any temp files before we die */
  77.   jpeg_destroy(cinfo);
  78. /* commented-out by chrisdl@netheaven.com, chrisdl@pagesz.net */
  79.   //exit(EXIT_FAILURE);
  80. }
  81. /*
  82.  * Actual output of an error or trace message.
  83.  * Applications may override this method to send JPEG messages somewhere
  84.  * other than stderr.
  85.  */
  86. METHODDEF(void)
  87. output_message (j_common_ptr cinfo)
  88. {
  89.   char buffer[JMSG_LENGTH_MAX];
  90.   /* Create the message */
  91.   (*cinfo->err->format_message) (cinfo, buffer);
  92.   /* Send it to stderr, adding a newline */
  93. /* commented-out by chrisdl@netheaven.com, chrisdl@pagesz.net */
  94.   //fprintf(stderr, "%sn", buffer);
  95. /*added by chrisdl@netheaven.com, chrisdl@pagesz.net */
  96.   //MessageBox(GetActiveWindow(),buffer,"JPEG Error",MB_OK);
  97.   // YZ 2000-11-15 注释掉了上面的一行
  98. }
  99. /*
  100.  * Decide whether to emit a trace or warning message.
  101.  * msg_level is one of:
  102.  *   -1: recoverable corrupt-data warning, may want to abort.
  103.  *    0: important advisory messages (always display to user).
  104.  *    1: first level of tracing detail.
  105.  *    2,3,...: successively more detailed tracing messages.
  106.  * An application might override this method if it wanted to abort on warnings
  107.  * or change the policy about which messages to display.
  108.  */
  109. METHODDEF(void)
  110. emit_message (j_common_ptr cinfo, int msg_level)
  111. {
  112.   struct jpeg_error_mgr * err = cinfo->err;
  113.   if (msg_level < 0) {
  114.     /* It's a warning message.  Since corrupt files may generate many warnings,
  115.      * the policy implemented here is to show only the first warning,
  116.      * unless trace_level >= 3.
  117.      */
  118.     if (err->num_warnings == 0 || err->trace_level >= 3)
  119.       (*err->output_message) (cinfo);
  120.     /* Always count warnings in num_warnings. */
  121.     err->num_warnings++;
  122.   } else {
  123.     /* It's a trace message.  Show it if trace_level >= msg_level. */
  124.     if (err->trace_level >= msg_level)
  125.       (*err->output_message) (cinfo);
  126.   }
  127. }
  128. /*
  129.  * Format a message string for the most recent JPEG error or message.
  130.  * The message is stored into buffer, which should be at least JMSG_LENGTH_MAX
  131.  * characters.  Note that no 'n' character is added to the string.
  132.  * Few applications should need to override this method.
  133.  */
  134. METHODDEF(void)
  135. format_message (j_common_ptr cinfo, char * buffer)
  136. {
  137.   struct jpeg_error_mgr * err = cinfo->err;
  138.   int msg_code = err->msg_code;
  139.   const char * msgtext = NULL;
  140.   const char * msgptr;
  141.   char ch;
  142.   boolean isstring;
  143.   /* Look up message string in proper table */
  144.   if (msg_code > 0 && msg_code <= err->last_jpeg_message) {
  145.     msgtext = err->jpeg_message_table[msg_code];
  146.   } else if (err->addon_message_table != NULL &&
  147.      msg_code >= err->first_addon_message &&
  148.      msg_code <= err->last_addon_message) {
  149.     msgtext = err->addon_message_table[msg_code - err->first_addon_message];
  150.   }
  151.   /* Defend against bogus message number */
  152.   if (msgtext == NULL) {
  153.     err->msg_parm.i[0] = msg_code;
  154.     msgtext = err->jpeg_message_table[0];
  155.   }
  156.   /* Check for string parameter, as indicated by %s in the message text */
  157.   isstring = FALSE;
  158.   msgptr = msgtext;
  159.   while ((ch = *msgptr++) != '') {
  160.     if (ch == '%') {
  161.       if (*msgptr == 's') isstring = TRUE;
  162.       break;
  163.     }
  164.   }
  165.   /* Format the message into the passed buffer */
  166.   if (isstring)
  167.     sprintf(buffer, msgtext, err->msg_parm.s);
  168.   else
  169.     sprintf(buffer, msgtext,
  170.     err->msg_parm.i[0], err->msg_parm.i[1],
  171.     err->msg_parm.i[2], err->msg_parm.i[3],
  172.     err->msg_parm.i[4], err->msg_parm.i[5],
  173.     err->msg_parm.i[6], err->msg_parm.i[7]);
  174. }
  175. /*
  176.  * Reset error state variables at start of a new image.
  177.  * This is called during compression startup to reset trace/error
  178.  * processing to default state, without losing any application-specific
  179.  * method pointers.  An application might possibly want to override
  180.  * this method if it has additional error processing state.
  181.  */
  182. METHODDEF(void)
  183. reset_error_mgr (j_common_ptr cinfo)
  184. {
  185.   cinfo->err->num_warnings = 0;
  186.   /* trace_level is not reset since it is an application-supplied parameter */
  187.   cinfo->err->msg_code = 0; /* may be useful as a flag for "no error" */
  188. }
  189. /*
  190.  * Fill in the standard error-handling methods in a jpeg_error_mgr object.
  191.  * Typical call is:
  192.  * struct jpeg_compress_struct cinfo;
  193.  * struct jpeg_error_mgr err;
  194.  *
  195.  * cinfo.err = jpeg_std_error(&err);
  196.  * after which the application may override some of the methods.
  197.  */
  198. GLOBAL(struct jpeg_error_mgr *)
  199. jpeg_std_error (struct jpeg_error_mgr * err)
  200. {
  201.   err->error_exit = error_exit;
  202.   err->emit_message = emit_message;
  203.   err->output_message = output_message;
  204.   err->format_message = format_message;
  205.   err->reset_error_mgr = reset_error_mgr;
  206.   err->trace_level = 0; /* default = no tracing */
  207.   err->num_warnings = 0; /* no warnings emitted yet */
  208.   err->msg_code = 0; /* may be useful as a flag for "no error" */
  209.   /* Initialize message table pointers */
  210.   err->jpeg_message_table = jpeg_std_message_table;
  211.   err->last_jpeg_message = (int) JMSG_LASTMSGCODE - 1;
  212.   err->addon_message_table = NULL;
  213.   err->first_addon_message = 0; /* for safety */
  214.   err->last_addon_message = 0;
  215.   return err;
  216. }