JERROR.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小: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. }
  98. /*
  99.  * Decide whether to emit a trace or warning message.
  100.  * msg_level is one of:
  101.  *   -1: recoverable corrupt-data warning, may want to abort.
  102.  *    0: important advisory messages (always display to user).
  103.  *    1: first level of tracing detail.
  104.  *    2,3,...: successively more detailed tracing messages.
  105.  * An application might override this method if it wanted to abort on warnings
  106.  * or change the policy about which messages to display.
  107.  */
  108. METHODDEF(void)
  109. emit_message (j_common_ptr cinfo, int msg_level)
  110. {
  111.   struct jpeg_error_mgr * err = cinfo->err;
  112.   if (msg_level < 0) {
  113.     /* It's a warning message.  Since corrupt files may generate many warnings,
  114.      * the policy implemented here is to show only the first warning,
  115.      * unless trace_level >= 3.
  116.      */
  117.     if (err->num_warnings == 0 || err->trace_level >= 3)
  118.       (*err->output_message) (cinfo);
  119.     /* Always count warnings in num_warnings. */
  120.     err->num_warnings++;
  121.   } else {
  122.     /* It's a trace message.  Show it if trace_level >= msg_level. */
  123.     if (err->trace_level >= msg_level)
  124.       (*err->output_message) (cinfo);
  125.   }
  126. }
  127. /*
  128.  * Format a message string for the most recent JPEG error or message.
  129.  * The message is stored into buffer, which should be at least JMSG_LENGTH_MAX
  130.  * characters.  Note that no 'n' character is added to the string.
  131.  * Few applications should need to override this method.
  132.  */
  133. METHODDEF(void)
  134. format_message (j_common_ptr cinfo, char * buffer)
  135. {
  136.   struct jpeg_error_mgr * err = cinfo->err;
  137.   int msg_code = err->msg_code;
  138.   const char * msgtext = NULL;
  139.   const char * msgptr;
  140.   char ch;
  141.   boolean isstring;
  142.   /* Look up message string in proper table */
  143.   if (msg_code > 0 && msg_code <= err->last_jpeg_message) {
  144.     msgtext = err->jpeg_message_table[msg_code];
  145.   } else if (err->addon_message_table != NULL &&
  146.      msg_code >= err->first_addon_message &&
  147.      msg_code <= err->last_addon_message) {
  148.     msgtext = err->addon_message_table[msg_code - err->first_addon_message];
  149.   }
  150.   /* Defend against bogus message number */
  151.   if (msgtext == NULL) {
  152.     err->msg_parm.i[0] = msg_code;
  153.     msgtext = err->jpeg_message_table[0];
  154.   }
  155.   /* Check for string parameter, as indicated by %s in the message text */
  156.   isstring = FALSE;
  157.   msgptr = msgtext;
  158.   while ((ch = *msgptr++) != '') {
  159.     if (ch == '%') {
  160.       if (*msgptr == 's') isstring = TRUE;
  161.       break;
  162.     }
  163.   }
  164.   /* Format the message into the passed buffer */
  165.   if (isstring)
  166.     sprintf(buffer, msgtext, err->msg_parm.s);
  167.   else
  168.     sprintf(buffer, msgtext,
  169.     err->msg_parm.i[0], err->msg_parm.i[1],
  170.     err->msg_parm.i[2], err->msg_parm.i[3],
  171.     err->msg_parm.i[4], err->msg_parm.i[5],
  172.     err->msg_parm.i[6], err->msg_parm.i[7]);
  173. }
  174. /*
  175.  * Reset error state variables at start of a new image.
  176.  * This is called during compression startup to reset trace/error
  177.  * processing to default state, without losing any application-specific
  178.  * method pointers.  An application might possibly want to override
  179.  * this method if it has additional error processing state.
  180.  */
  181. METHODDEF(void)
  182. reset_error_mgr (j_common_ptr cinfo)
  183. {
  184.   cinfo->err->num_warnings = 0;
  185.   /* trace_level is not reset since it is an application-supplied parameter */
  186.   cinfo->err->msg_code = 0; /* may be useful as a flag for "no error" */
  187. }
  188. /*
  189.  * Fill in the standard error-handling methods in a jpeg_error_mgr object.
  190.  * Typical call is:
  191.  * struct jpeg_compress_struct cinfo;
  192.  * struct jpeg_error_mgr err;
  193.  *
  194.  * cinfo.err = jpeg_std_error(&err);
  195.  * after which the application may override some of the methods.
  196.  */
  197. GLOBAL(struct jpeg_error_mgr *)
  198. jpeg_std_error (struct jpeg_error_mgr * err)
  199. {
  200.   err->error_exit = error_exit;
  201.   err->emit_message = emit_message;
  202.   err->output_message = output_message;
  203.   err->format_message = format_message;
  204.   err->reset_error_mgr = reset_error_mgr;
  205.   err->trace_level = 0; /* default = no tracing */
  206.   err->num_warnings = 0; /* no warnings emitted yet */
  207.   err->msg_code = 0; /* may be useful as a flag for "no error" */
  208.   /* Initialize message table pointers */
  209.   err->jpeg_message_table = jpeg_std_message_table;
  210.   err->last_jpeg_message = (int) JMSG_LASTMSGCODE - 1;
  211.   err->addon_message_table = NULL;
  212.   err->first_addon_message = 0; /* for safety */
  213.   err->last_addon_message = 0;
  214.   return err;
  215. }